|
@@ -333,7 +333,11 @@ export class RoomController extends BasicController {
|
|
|
this.socket.onAny((event, data) => {
|
|
|
// if (event !== "webSyncAction") {
|
|
|
// console.log(`onAny:get ${event}, data:${JSON.stringify(data)}`);
|
|
|
- this.logger.info(`onAny:get ${event}, data:${JSON.stringify(data)}`);
|
|
|
+ // 去掉压测事件
|
|
|
+ if (event !== "client to server event") {
|
|
|
+ this.logger.info(`onAny:get ${event}, data:${JSON.stringify(data)}`);
|
|
|
+ }
|
|
|
+
|
|
|
// }
|
|
|
});
|
|
|
}
|