Improve Response verbose/debug logging

This commit is contained in:
2022-03-30 21:38:25 -05:00
parent 10b3e1ecc3
commit 6f66126d38
4 changed files with 16 additions and 4 deletions

View File

@@ -26,6 +26,7 @@ const isLoggingLevel = (something: unknown): something is LoggingLevel => {
LoggingLevel.Info,
LoggingLevel.Debug,
LoggingLevel.Verbose,
LoggingLevel.Trace,
].includes(something as any)
}