Merge pull request #6794 from eed3si9n/wip/fix

Fix test
This commit is contained in:
eugene yokota 2022-01-18 00:51:04 -05:00 committed by GitHub
commit 952546f413
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class ManagedLoggerSpec extends AnyFlatSpec with Matchers {
val context = LoggerContext()
@nowarn
//TODO create a new appender for testing purposes - 3/12/21
val asyncStdout = new ConsoleAppenderFromLog4J("asyncStdout", LogExchange.asyncStdout)
val asyncStdout = ConsoleAppender("asyncStdout")
def newLogger(name: String): ManagedLogger = context.logger(name, None, None)
"ManagedLogger" should "log to console" in {
val log = newLogger("foo")