Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
FredKSchott authored and astrobot-houston committed Aug 1, 2022
1 parent 643443b commit f62f05f
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions packages/astro/src/core/logger/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,13 @@ export const levels: Record<LoggerLevel, number> = {
};

/** Full logging API */
export function log(
opts: LogOptions,
level: LoggerLevel,
type: string | null,
message: string,
) {
export function log(opts: LogOptions, level: LoggerLevel, type: string | null, message: string) {
const logLevel = opts.level;
const dest = opts.dest;
const event: LogMessage = {
type,
level,
message
message,
};

// test if this level is enabled or not
Expand Down

0 comments on commit f62f05f

Please sign in to comment.