Skip to content

Instantly share code, notes, and snippets.

@cubed2d
Created October 16, 2014 13:07
Show Gist options
  • Save cubed2d/df1f017dc0ff378b4bba to your computer and use it in GitHub Desktop.
Save cubed2d/df1f017dc0ff378b4bba to your computer and use it in GitHub Desktop.
fix for error CS0103: aka Degub
public static class Degub
{
public static void Log(object message)
{
Debug.Log(message);
}
public static void Log(object message, Object context)
{
Debug.Log(message, context);
}
public static void LogError(object message)
{
Debug.LogError(message);
}
public static void LogError(object message, Object context)
{
Debug.LogError(message, context);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment