diff --git a/test/tap/logging-test.js b/test/tap/logging-test.js index 7943f0c..9cfdab8 100644 --- a/test/tap/logging-test.js +++ b/test/tap/logging-test.js @@ -154,6 +154,8 @@ test("log4js", batch => { "should invoke appender shutdowns" ); logger.info("this should not go to the appenders"); + logger.log("info", "this should not go to the appenders"); + logger._log(require("../../lib/levels").INFO, ["this should not go to the appenders"]); t.notOk(events.event); t.end(); });