Skip to content

Commit

Permalink
feat(logger): change selected method visibility to protected (#3377)
Browse files Browse the repository at this point in the history
Co-authored-by: Andrea Amorosi <[email protected]>
  • Loading branch information
zirkelc and dreamorosi authored Nov 29, 2024
1 parent 32baa49 commit 93a19a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/logger/src/Logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@ class Logger extends Utility implements LoggerInterface {
* @param input - The main input of the log item, this can be a string or an object with additional attributes
* @param extraInput - Additional attributes to be added to the log item
*/
private createAndPopulateLogItem(
protected createAndPopulateLogItem(
logLevel: number,
input: LogItemMessage,
extraInput: LogItemExtraInput
Expand Down Expand Up @@ -835,7 +835,7 @@ class Logger extends Utility implements LoggerInterface {
* @param logLevel - The log level
* @param log - The log item to print
*/
private printLog(logLevel: number, log: LogItem): void {
protected printLog(logLevel: number, log: LogItem): void {
log.prepareForPrint();

const consoleMethod =
Expand All @@ -862,7 +862,7 @@ class Logger extends Utility implements LoggerInterface {
* @param input - The log message
* @param extraInput - The extra input to log
*/
private processLogItem(
protected processLogItem(
logLevel: number,
input: LogItemMessage,
extraInput: LogItemExtraInput
Expand Down

0 comments on commit 93a19a5

Please sign in to comment.