minor bugfixing and log severity adjustment
This commit is contained in:
		| @@ -6,6 +6,12 @@ namespace MareSynchronos.Utils | ||||
| { | ||||
|     internal class Logger | ||||
|     { | ||||
|         public static void Info(string info) | ||||
|         { | ||||
|             var caller = new StackTrace().GetFrame(1)?.GetMethod()?.ReflectedType?.Name ?? "Unknown"; | ||||
|             PluginLog.Information($"[{caller}] {info}"); | ||||
|         } | ||||
|  | ||||
|         public static void Debug(string debug, string stringToHighlight = "") | ||||
|         { | ||||
|             var caller = new StackTrace().GetFrame(1)?.GetMethod()?.ReflectedType?.Name ?? "Unknown"; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Stanley Dimant
					Stanley Dimant