File tree Expand file tree Collapse file tree 4 files changed +3
-4
lines changed
packages/selenium-ide/src
windows/ProjectEditor/tabs/Project
session/controllers/Projects Expand file tree Collapse file tree 4 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ const AppWrapper: FC<AppWrapperProps> = ({ children }) => {
33
33
const [ languageMap , setLanguageMap ] = React . useState < any > ( { } )
34
34
React . useEffect ( ( ) => {
35
35
window . sideAPI . system . getLanguageMap ( true ) . then ( ( result ) => {
36
- console . log ( result )
37
36
setLanguageMap ( result )
38
37
} )
39
38
} , [ ] )
Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ const OutPutSettings: FC = () => {
165
165
. catch ( ( error ) => {
166
166
setOptions ( [ ] )
167
167
setPage ( '' )
168
- console . log ( error )
168
+ console . error ( error )
169
169
} )
170
170
}
171
171
Original file line number Diff line number Diff line change @@ -7,5 +7,5 @@ export default () => {
7
7
loadExtensionOptions : { allowFileAccess : true } ,
8
8
} )
9
9
. then ( ( name ) => console . log ( `Added Extension: ${ name } ` ) )
10
- . catch ( ( err ) => console . log ( 'An error occurred: ' , err ) )
10
+ . catch ( ( err ) => console . error ( 'An error occurred: ' , err ) )
11
11
}
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ export default class ProjectsController {
180
180
project ?. plugins ?. filter ( ( plugin ) => typeof plugin === 'string' ) ?? [ ]
181
181
return project
182
182
} catch ( e ) {
183
- console . log ( ( e as Error ) . message )
183
+ console . error ( ( e as Error ) . message )
184
184
return null
185
185
}
186
186
}
You can’t perform that action at this time.
0 commit comments