-
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.
Add test files to validate the functionality
- Loading branch information
1 parent
b6b10e5
commit 712fa89
Showing
2 changed files
with
10 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const logger = require("logger-safe-security").default; | ||
const appLogger = logger.child({ service: "sample" }); | ||
|
||
logger.info("This is a parent logger"); | ||
appLogger.info("This is a child logger"); |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import logger from "logger-safe-security"; | ||
const appLogger = logger.child({ service: "sample" }); | ||
|
||
logger.info("This is a parent logger"); | ||
appLogger.info("This is a child logger"); |