diff options
author | 2022-02-07 13:24:45 +0000 | |
---|---|---|
committer | 2022-02-07 13:24:45 +0000 | |
commit | b95cd1951229bca1ecf53d4b487d97e4dccfeaf2 (patch) | |
tree | 6bfb0d28440687adb5c6e9b50dffc8ca1c8cc144 | |
parent | 5872ec3d9cdc9554e82c467435c25e1fc1f9bb8a (diff) | |
download | astro-b95cd1951229bca1ecf53d4b487d97e4dccfeaf2.tar.gz astro-b95cd1951229bca1ecf53d4b487d97e4dccfeaf2.tar.zst astro-b95cd1951229bca1ecf53d4b487d97e4dccfeaf2.zip |
[ci] yarn format
Diffstat (limited to '')
-rw-r--r-- | packages/astro/src/core/logger.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/core/logger.ts b/packages/astro/src/core/logger.ts index 84bc968fc..4aaa5a648 100644 --- a/packages/astro/src/core/logger.ts +++ b/packages/astro/src/core/logger.ts @@ -90,7 +90,7 @@ export const levels: Record<LoggerLevel, number> = { }; export function enableVerboseLogging() { - debugPackage.enable('*,-babel'); + debugPackage.enable('*,-babel'); debug('cli', '--verbose flag enabled! Enabling: DEBUG="*,-babel"'); debug('cli', 'Tip: Set the DEBUG env variable directly for more control. Example: "DEBUG=astro:*,vite:* astro build".'); } |