Remove debug log for process PID in napcat.ts

Eliminated an unnecessary console.log statement that printed the process PID. This cleans up the output and removes leftover debugging code.
This commit is contained in:
手瓜一十雪 2025-10-29 21:25:24 +08:00
parent 55ef040852
commit 1445a29e15

View File

@ -1,3 +1,2 @@
import { NCoreInitShell } from './base'; import { NCoreInitShell } from './base';
console.log('pid', process.pid);
NCoreInitShell(); NCoreInitShell();