-
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(logger): add doc strings for logger package
- Loading branch information
Showing
3 changed files
with
118 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,18 @@ | ||
export interface OgmaPrintOptions { | ||
/** | ||
* Extra context you can add to the log e.g. the calling method | ||
* @default '' | ||
*/ | ||
context?: string; | ||
/** | ||
* Extra information you can add to the log. Not sure why you'd want to override the application, but you can. | ||
* @default '' | ||
*/ | ||
application?: string; | ||
/** | ||
* A field you can add to allow for log tracing | ||
* @default '' | ||
*/ | ||
correlationId?: string; | ||
[key: string]: unknown; | ||
} |
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