Skip to content

Commit 2ec7dd6

Browse files
committed
fix: 移除 log 和 lockfile
1 parent 01f4b98 commit 2ec7dd6

File tree

3 files changed

+12
-332
lines changed

3 files changed

+12
-332
lines changed

apps/qqbot/src/adapter/MessageEvent.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ export class CommandEvent extends CommandEventBase<BotTypes> {
1212
this.messageId = data.message_id;
1313
this.isPrivate = data.message_type === 'private';
1414
this.params = this.text.split(' ').slice(1);
15-
console.log(this.text, this.params);
1615
}
1716

1817
public edit(): never {

apps/qqofbot/src/adapter/Bot.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ export class BotAdapter extends Bot<BotTypes> {
107107
const text = (data.message as MessageElem[]).filter(it => it.type === 'text').map(it => (it as TextElem).text).join('').trim();
108108
if (!text) return;
109109

110-
console.log(data);
111110
if ('group_id' in data && await fusion.checkFusion(data.group_id, this.env)) {
112111
this.logger
113112
.withField('QQ', data.user_id)

0 commit comments

Comments
 (0)