AL.Sharepoint.Core.Log.DiagnosticLog.Info C# (CSharp) 메소드

Info() 공개 정적인 메소드

public static Info ( string methodName, string errorMessage ) : void
methodName string
errorMessage string
리턴 void
        public static void Info(string methodName, string errorMessage)
        {
            SPDiagnosticsCategory category = LogService.Areas[ProductName].Categories[InfoCategory];
            LogService.WriteTrace(0, category, TraceSeverity.Verbose, methodName + "::" + errorMessage);
        }