File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/notebooks/deepnote/integrations Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 11import { inject , injectable } from 'inversify' ;
22
33import { IEncryptedStorage } from '../../../platform/common/application/types' ;
4+ import { logger } from '../../../platform/logging' ;
45import { IntegrationConfig , IntegrationType } from './integrationTypes' ;
56
67const INTEGRATION_SERVICE_NAME = 'deepnote-integrations' ;
@@ -128,12 +129,12 @@ export class IntegrationStorage {
128129 const config : IntegrationConfig = JSON . parse ( configJson ) ;
129130 this . cache . set ( id , config ) ;
130131 } catch ( error ) {
131- console . error ( `Failed to parse integration config for ${ id } :` , error ) ;
132+ logger . error ( `Failed to parse integration config for ${ id } :` , error ) ;
132133 }
133134 }
134135 }
135136 } catch ( error ) {
136- console . error ( 'Failed to parse integration index:' , error ) ;
137+ logger . error ( 'Failed to parse integration index:' , error ) ;
137138 }
138139
139140 this . cacheLoaded = true ;
You can’t perform that action at this time.
0 commit comments