Skip to content

Commit

Permalink
fix logger
Browse files Browse the repository at this point in the history
  • Loading branch information
catplvsplus committed Apr 29, 2024
1 parent e239bc5 commit aa0187c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/reciple/src/utils/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function formatLogMessage(message: string, logger: Logger, config: Partia
case LoggerLevel.DEBUG:
return kleur.cyan(msg);
default:
return msg;
return kleur.reset(msg);
}
};

Expand Down

0 comments on commit aa0187c

Please sign in to comment.