Skip to content

Commit 9b7113e

Browse files
chore(path-log): remove route path log from getRegistrar
1 parent c22d7e7 commit 9b7113e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/index.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,6 @@ class Client extends HttpInteractionServer {
275275
}
276276
async getRegistar(log = true) {
277277
const commandsBody = this.router.CommandDefinitions;
278-
console.log("route:", Routes.currentApplication().toString());
279278
var currentClient: APIApplication;
280279
try {
281280
currentClient = (await this.client.get(
@@ -297,13 +296,13 @@ class Client extends HttpInteractionServer {
297296
chalk.bold(chalk.cyan("Approximate Guild Count: ")) +
298297
(currentClient.approximate_guild_count
299298
? chalk.green(currentClient.approximate_guild_count)
300-
: chalk.redBright("unknown"))
299+
: chalk.redBright("0"))
301300
);
302301
console.log(
303302
chalk.bold(chalk.cyan("Approximate User Install Count: ")) +
304303
(currentClient.approximate_user_install_count
305304
? chalk.green(currentClient.approximate_user_install_count)
306-
: chalk.redBright("unknown"))
305+
: chalk.redBright("0"))
307306
);
308307
}
309308
var upperThis = this;

0 commit comments

Comments
 (0)