public void Error()

in AMP/Services/ILoggingService.cs [71:77]


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