public void Information()

in AMP/Services/ILoggingService.cs [43:53]


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

          
        }