CK.Core.SystemActivityMonitor.AssertRootLogPathIsSet C# (CSharp) Method

AssertRootLogPathIsSet() public static method

Checks that RootLogPath is correctly configured by throwing a detailed exception if not.
public static AssertRootLogPathIsSet ( ) : void
return void
        public static void AssertRootLogPathIsSet()
        {
            if( RootLogPath == null ) throw new CKException( ActivityMonitorResources.RootLogPathMustBeSet, AppSettingsKey );
        }