fix(server): don't set the wrong context on logger (#10088)

![image.png](https://graphite-user-uploaded-assets-prod.s3.amazonaws.com/hTwOityLamd4hitrae7M/c84ca60c-2837-43ba-a32c-0db1a87a5062.png)
This commit is contained in:
fengmk2
2025-02-11 10:12:55 +00:00
parent 4b8ff6b196
commit 7840e0f900
3 changed files with 41 additions and 33 deletions

View File

@@ -54,7 +54,7 @@ export class CreateCommand extends CommandRunner {
this.logger.log(`Creating ${fileName}...`);
writeFileSync(filePath, content);
this.logger.log('Migration file created at', filePath);
this.logger.log(`Migration file created at ${filePath}`);
this.logger.log('Done');
}