File tree Expand file tree Collapse file tree 3 files changed +12
-332
lines changed
Expand file tree Collapse file tree 3 files changed +12
-332
lines changed Original file line number Diff line number Diff 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 {
Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments