File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ function getProblem() {
7979 if ( errorPanel ) {
8080 const errorText = errorPanel . textContent ?. trim ( ) ;
8181 if ( errorText ) {
82- console . log ( 'Error from LeetCode:' , errorText ) ;
82+ // console.log('Error from LeetCode:', errorText);
8383 collectedData . push ( "\n--- LeetCode Error Message ---\n" + errorText ) ;
8484 collectedData . push ( "\nPlease fix the above error in the code." ) ;
8585 }
Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ function showCompanyTags(problemTitle: string) {
209209 // Use exponential backoff for retry delay
210210 const delay = baseDelay * Math . pow ( 1.5 , retryCount ) ;
211211 retryCount ++ ;
212- console . log ( `Attempt ${ retryCount } : Waiting for description element to load... Retrying in ${ delay } ms` ) ;
212+ // console.log(`Attempt ${retryCount}: Waiting for description element to load... Retrying in ${delay}ms`);
213213 setTimeout ( tryInsertCompanyTags , delay ) ;
214214 return ;
215215 }
You can’t perform that action at this time.
0 commit comments