summaryrefslogtreecommitdiff
path: root/packages/astro/src/dev.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/astro/src/dev.ts')
-rw-r--r--packages/astro/src/dev.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/astro/src/dev.ts b/packages/astro/src/dev.ts
index d040e9cc3..fdebc72cb 100644
--- a/packages/astro/src/dev.ts
+++ b/packages/astro/src/dev.ts
@@ -6,14 +6,14 @@ import { green } from 'kleur/colors';
import http from 'http';
import path from 'path';
import { performance } from 'perf_hooks';
-import { defaultLogDestination, debug, error, info, parseError } from './logger.js';
+import { defaultLogDestination, defaultLogLevel, debug, error, info, parseError } from './logger.js';
import { createRuntime } from './runtime.js';
import { stopTimer } from './build/util';
const hostname = '127.0.0.1';
const logging: LogOptions = {
- level: 'debug',
+ level: defaultLogLevel,
dest: defaultLogDestination,
};