|
@@ -20,10 +20,12 @@ namespace bbiwarg.Utility
|
|
|
}
|
|
|
static class Logger
|
|
|
{
|
|
|
+ public static int CurrentFrame { get; set; }
|
|
|
+
|
|
|
public static void log(string message, LogSubject subject)
|
|
|
{
|
|
|
if (Constants.LogLevel.HasFlag(subject))
|
|
|
- Console.WriteLine(message);
|
|
|
+ Console.WriteLine("Frame: " + CurrentFrame + "\t" + message);
|
|
|
}
|
|
|
}
|
|
|
}
|