public void Warning()

in AMP/Services/ILoggingService.cs [63:69]


        public void Warning(string message)
        {
            if (IsEnabled)
                LogUtil.Warning(message);
            if (EmitToConsole)
                System.Diagnostics.Debug.WriteLine($"");
        }