We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcdfb9c commit 4ed8b0eCopy full SHA for 4ed8b0e
logger.ts
@@ -4,4 +4,5 @@ import { name } from "./package.json";
4
5
export const logger: ConsolaInstance = consola.withTag(name);
6
7
-export const log = (...args: unknown[]) => console.log(...args);
+export const log = (...args: Parameters<typeof logger.log>) =>
8
+ logger.log(...args);
0 commit comments