File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/IntelliTect.AspNetCore.SignalR.SqlServer/Internal/SqlServer Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -29,10 +29,10 @@ public static IHostBuilder CreateHostBuilder(string[] args) =>
2929 )
3030 . ConfigureLogging ( builder =>
3131 {
32- builder . AddSystemdConsole ( options =>
32+ builder . AddSimpleConsole ( options =>
3333 {
34- options . IncludeScopes = true ;
3534 options . TimestampFormat = "hh:mm:ss " ;
35+ options . SingleLine = true ;
3636 } ) ;
3737 } ) ;
3838 } ) ;
Original file line number Diff line number Diff line change @@ -369,7 +369,7 @@ private bool StartSqlDependencyListener()
369369 // Specifically that Azure SQL Database reports that service broker is enabled,
370370 // even though it is entirely unsupported.
371371
372- _logger . LogInformation ( "{0}SQL Service Broker is unsupported by the target database. Falling back on periodic polling." , _tracePrefix ) ;
372+ _logger . LogWarning ( "{0}SQL Service Broker is unsupported by the target database. Falling back on periodic polling." , _tracePrefix ) ;
373373 _notificationsDisabled = true ;
374374 return false ;
375375 }
You can’t perform that action at this time.
0 commit comments