public static void LogDebug()

in dotnetcore/utils/Logger.cs [24:32]


        public static void LogDebug(string message)
        {
            if (!IsLog4netConfigured)
            {
                ConfigureLog4Net();
            }

            log.Debug(message);
        }