Reduce the log level of various common events

This commit is contained in:
Ske
2019-10-27 23:44:27 +01:00
parent 823688e63d
commit 545e8df6a7
4 changed files with 5 additions and 5 deletions

View File

@@ -637,7 +637,7 @@ namespace PluralKit
public void Dispose()
{
_stopwatch.Stop();
_logger.Debug("Executed query {Query} in {ElapsedTime}", _commandText, _stopwatch.Elapsed);
_logger.Verbose("Executed query {Query} in {ElapsedTime}", _commandText, _stopwatch.Elapsed);
// One tick is 100 nanoseconds
_metrics.Provider.Timer.Instance(CoreMetrics.DatabaseQuery, new MetricTags("query", _commandText))