19 lines
349 B
C#
19 lines
349 B
C#
// DebugLogger
|
|
|
|
|
|
namespace Leguar.TotalJSON.Internal {
|
|
|
|
internal static class DebugLogger {
|
|
|
|
internal static void LogUserWarning(string str) {
|
|
UnityEngine.Debug.LogWarning("TotalJSON: " + str);
|
|
}
|
|
|
|
internal static void LogInternalError(string str) {
|
|
UnityEngine.Debug.LogError("Leguar.TotalJSON: Internal error: " + str);
|
|
}
|
|
|
|
}
|
|
|
|
}
|