Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
ref: deleted unused debugger.info method
  • Loading branch information
logaretm committed Mar 10, 2026
commit ab2b8d225d3d9da5ecb3c778af516db672d1cd55
4 changes: 0 additions & 4 deletions packages/core/src/utils/debug-logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,6 @@ function log(...args: Parameters<typeof console.log>): void {
_maybeLog('log', ...args);
}

function info(...args: Parameters<typeof console.info>): void {
_maybeLog('info', ...args);
}
Comment on lines -88 to -90
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

m: Was debug.info unused?

Copy link
Copy Markdown
Member Author

@logaretm logaretm Mar 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Weirdly not, because it was never exported unlike it's friends, so no module had a way of using it.

Happy to put it back and slap an ignore on it.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If it's unused let's remove it :) I was just surprised


function warn(...args: Parameters<typeof console.warn>): void {
_maybeLog('warn', ...args);
}
Expand Down