@@ -20,7 +20,7 @@ async function enumIndexedProperties(
2020 const response = await iteratorSlice ( iterator , start , end ) ;
2121 return response ;
2222 } catch ( e ) {
23- console . warn ( "Error in enumIndexedProperties" , e ) ;
23+ console . error ( "Error in enumIndexedProperties" , e ) ;
2424 return { } ;
2525 }
2626}
@@ -35,7 +35,7 @@ async function enumNonIndexedProperties(
3535 const response = await iteratorSlice ( iterator , start , end ) ;
3636 return response ;
3737 } catch ( e ) {
38- console . warn ( "Error in enumNonIndexedProperties" , e ) ;
38+ console . error ( "Error in enumNonIndexedProperties" , e ) ;
3939 return { } ;
4040 }
4141}
@@ -50,7 +50,7 @@ async function enumEntries(
5050 const response = await iteratorSlice ( iterator , start , end ) ;
5151 return response ;
5252 } catch ( e ) {
53- console . warn ( "Error in enumEntries" , e ) ;
53+ console . error ( "Error in enumEntries" , e ) ;
5454 return { } ;
5555 }
5656}
@@ -65,7 +65,7 @@ async function enumSymbols(
6565 const response = await iteratorSlice ( iterator , start , end ) ;
6666 return response ;
6767 } catch ( e ) {
68- console . warn ( "Error in enumSymbols" , e ) ;
68+ console . error ( "Error in enumSymbols" , e ) ;
6969 return { } ;
7070 }
7171}
@@ -74,7 +74,7 @@ async function getPrototype(
7474 objectClient : ObjectClient
7575) : ?Promise < { prototype ? : Object } > {
7676 if ( typeof objectClient . getPrototype !== "function" ) {
77- console . warn ( "objectClient.getPrototype is not a function" ) ;
77+ console . error ( "objectClient.getPrototype is not a function" ) ;
7878 return Promise . resolve ( { } ) ;
7979 }
8080 return objectClient . getPrototype ( ) ;
0 commit comments