Skip to content

feat(logger): change visibility to protected #3377

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Nov 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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