2 files changed, 3 insertions, 3 deletions
diff --git a/bundle/src/Server.ts b/bundle/src/Server.ts
index c6acf0ad..e0586601 100644
--- a/bundle/src/Server.ts
+++ b/bundle/src/Server.ts
@@ -33,9 +33,8 @@ async function main() {
},
});
- await api.start();
- await cdn.start();
- await gateway.start();
+ await Promise.all([api.start(), cdn.start(), gateway.start()]);
+ console.log(`[Server] listening on port ${port}`);
}
main().catch(console.error);
diff --git a/bundle/src/stats.ts b/bundle/src/stats.ts
index 6413f347..37ddb4e2 100644
--- a/bundle/src/stats.ts
+++ b/bundle/src/stats.ts
@@ -2,6 +2,7 @@ import os from "os";
import osu from "node-os-utils";
export function initStats() {
+ console.log(`[Path] running in ${__dirname}`);
console.log(`[CPU] ${osu.cpu.model()} Cores x${osu.cpu.count()}`);
console.log(`[System] ${os.platform()} ${os.arch()}`);
console.log(`[Database] started`);
|