Fusion.Log.PrintException C# (CSharp) 메소드

PrintException() 공개 정적인 메소드

public static PrintException ( Exception e, string format ) : void
e System.Exception
format string
리턴 void
		public static void PrintException ( Exception e, string format, params object[] args )
		{
			Log.Error( format, args );

			var lines = e.ToString().Split('\n');

			foreach (var line in lines) {
				Log.Error(line);
			}
		}