From 93c48f7471da02fd0f76c0c718bb5758603f9a2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A7=81Ash=C3=BB=EA=A7=82?= <30575805+Ashu11-A@users.noreply.github.com> Date: Sat, 25 May 2024 05:37:18 -0400 Subject: [PATCH] Add Emojis --- core/src/controller/plugins.ts | 2 +- core/src/controller/socket.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/controller/plugins.ts b/core/src/controller/plugins.ts index eb6abac8..54281a8f 100644 --- a/core/src/controller/plugins.ts +++ b/core/src/controller/plugins.ts @@ -115,7 +115,7 @@ export class Plugins { async load(): Promise { const plugins = await this.list() if (plugins.length === 0) { - console.log('Nenhum plugin encontrado!') + console.log('🚫 Nenhum plugin encontrado!') return } diff --git a/core/src/controller/socket.ts b/core/src/controller/socket.ts index 4b9eafdd..05030f79 100644 --- a/core/src/controller/socket.ts +++ b/core/src/controller/socket.ts @@ -16,7 +16,7 @@ export class SocketController { listen (port: string) { this.server.listen(port, () => { - console.log(`Servidor inicializado na porta ${port}`) + console.log(`🚀 Servidor inicializado na porta ${port}`) }) }