Skip to content

Commit f44538d

Browse files
committed
fix(core): enable console clearing in IntentHttpServer
- Updated IntentHttpServer to clear the console at startup for improved visibility during server initialization.
1 parent ef285af commit f44538d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/lib/rest/foundation/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ export class IntentHttpServer {
135135
config: ConfigService<unknown>,
136136
extraInfo: [string, string, string][] = [],
137137
) {
138-
// console.clear();
138+
console.clear();
139139
console.log();
140140
const port = config.get('app.port');
141141
const hostname = config.get('app.hostname');

0 commit comments

Comments
 (0)