diff --git a/game-server/app/servers/guild/filter/guildAuthFilter.ts b/game-server/app/servers/guild/filter/guildAuthFilter.ts index 466063e6c..3c57266fd 100644 --- a/game-server/app/servers/guild/filter/guildAuthFilter.ts +++ b/game-server/app/servers/guild/filter/guildAuthFilter.ts @@ -16,7 +16,7 @@ Filter.prototype.before = async function (routeRecord: RouteRecord, msg: any, se const roleId: string = session.get('roleId'); let guildCode: string = session.get('guildCode'); let guildAuth: number = session.get('guildAuth'); - console.log('********guildAuth', guildAuth); + // console.log('********guildAuth', guildAuth); const { code, roleId: hisRoleId } = msg; diff --git a/game-server/app/services/activity/gachaService.ts b/game-server/app/services/activity/gachaService.ts index 2f87f0d19..a52234b9f 100644 --- a/game-server/app/services/activity/gachaService.ts +++ b/game-server/app/services/activity/gachaService.ts @@ -184,7 +184,7 @@ export class GachaPull { this.hasGetFloor = false; this.floorCount = 0; } - console.log('******', this.floorCount, this.dicFloorCount, this.hasGetFloor) + // console.log('******', this.floorCount, this.dicFloorCount, this.hasGetFloor) return result; } else { return base diff --git a/shared/db/BaseModel.ts b/shared/db/BaseModel.ts index b9a183ee5..34935b9b5 100644 --- a/shared/db/BaseModel.ts +++ b/shared/db/BaseModel.ts @@ -43,7 +43,7 @@ function catchError(T) { for(let name of names) { if(typeof T[name] == 'function') { T2[name] = async (...args: any) => { - console.log('*****', args) + // console.log('*****', args) try { return await T[name].apply(null, args) } catch (e) { diff --git a/shared/domain/rank.ts b/shared/domain/rank.ts index 9bc1122d8..7fe793584 100644 --- a/shared/domain/rank.ts +++ b/shared/domain/rank.ts @@ -184,7 +184,7 @@ export class GuildRankParam { let leader = guild.leader; let _leader = new GuildLeader(leader); this.leader = _leader; - console.log('*****', guild.isReducedCe, guild.guildCe, reduceCe(guild.guildCe)) + // console.log('*****', guild.isReducedCe, guild.guildCe, reduceCe(guild.guildCe)) if(guild.isReducedCe) { this.guildCe = guild.guildCe; } else {