summaryrefslogtreecommitdiff
path: root/Assets/Scripts/Utils/LogHelper.cs
blob: 9c835bbe772ae6f5930e4432d6e0e4b341e45735 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public static class LogHelper 
{
	public static void LogError(string msg)
	{
		Debug.LogError("[Erika] " + msg);
	}

	public static void Log(string msg)
	{
		Debug.Log("[Erika] " + msg);
	}

}