File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -305,7 +305,6 @@ export class AdminCommands {
305305 return ;
306306 }
307307 if ( welcomeContent ) {
308- console . log ( 'welcomeContent' , welcomeContent ) ;
309308 await GroupSettingsService . setWelcomeMessage ( ctx , welcomeContent ) ;
310309 await reply . textReply ( `The welcome message has been updated to: \n${ welcomeContent } ` ) ;
311310 return ;
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ export class ConnectionPool {
2020 await this . _pool . connect ( ) ;
2121 } catch ( error : any ) {
2222 console . log ( 'error:' , error . code ) ;
23-
2423 if ( error . code === '3D000' ) {
2524 console . log ( `Database does not exist. Creating database ${ Config . database . databaseName } ...` ) ;
2625 await this . createDatabase ( ) ;
Original file line number Diff line number Diff line change @@ -103,8 +103,6 @@ export class GroupRuleService {
103103 const groupId = chat . id ;
104104
105105 const groupRules = await this . getRulesByGroupId ( groupId ) ;
106- console . log ( 'groupRules' , groupRules ) ;
107-
108106 if ( groupRules . length === 0 ) {
109107 console . log ( `No rules found for group ID: ${ groupId } .` ) ;
110108 return ;
You can’t perform that action at this time.
0 commit comments