-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
366809d
commit d8c2924
Showing
5 changed files
with
22 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
const { logger } = require("logger-safe-security").default; | ||
const appLogger = logger.child({ service: "sample" }); | ||
const { createLogger } = require("logger-safe-security"); | ||
const logger = createLogger({ service: "sample" }); | ||
|
||
logger.info("This is a parent logger"); | ||
appLogger.info("This is a child logger"); | ||
logger.info("This is a sample logger"); | ||
logger.info("This is a sample logger with more information", { planet: "Earth" }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import { logger } from "logger-safe-security"; | ||
const appLogger = logger.child({ service: "sample" }); | ||
import { createLogger } from "logger-safe-security"; | ||
const logger = createLogger({ service: "sample" }); | ||
|
||
logger.info("This is a parent logger"); | ||
appLogger.info("This is a child logger"); | ||
logger.info("This is a sample logger"); | ||
logger.info("This is a sample logger with more information", { planet: "Earth" }); |