1 instantiation of LogEvent
dotnet-watch (1)
LogEvents.cs (1)
18=> new(new EventId(s_id++), level, message);
13 references to LogEvent
dotnet-watch (13)
LogEvents.cs (12)
17private static LogEvent Create(LogLevel level, string message) 20public static void Log(this ILogger logger, LogEvent logEvent, params object[] args) 23public static readonly LogEvent UpdatesApplied = Create(LogLevel.Debug, "Updates applied: {0} out of {1}."); 24public static readonly LogEvent Capabilities = Create(LogLevel.Debug, "Capabilities: '{1}'."); 25public static readonly LogEvent HotReloadSucceeded = Create(LogLevel.Information, "Hot reload succeeded."); 26public static readonly LogEvent RefreshingBrowser = Create(LogLevel.Debug, "Refreshing browser."); 27public static readonly LogEvent ReloadingBrowser = Create(LogLevel.Debug, "Reloading browser."); 28public static readonly LogEvent NoBrowserConnected = Create(LogLevel.Debug, "No browser is connected."); 29public static readonly LogEvent FailedToReceiveResponseFromConnectedBrowser = Create(LogLevel.Debug, "Failed to receive response from a connected browser."); 30public static readonly LogEvent UpdatingDiagnostics = Create(LogLevel.Debug, "Updating diagnostics."); 31public static readonly LogEvent SendingStaticAssetUpdateRequest = Create(LogLevel.Debug, "Sending static asset update request to connected browsers: '{0}'."); 32public static readonly LogEvent RefreshServerRunningAt = Create(LogLevel.Debug, "Refresh server running at {0}.");
UI\IReporter.cs (1)
150private static MessageDescriptor Create(LogEvent logEvent, Emoji emoji)