File tree Expand file tree Collapse file tree 3 files changed +2
-5
lines changed
Expand file tree Collapse file tree 3 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -378,6 +378,6 @@ module.exports.VerifyMode = nativeBinding.VerifyMode
378378
379379const customInspectSymbol = Symbol . for ( 'nodejs.util.inspect.custom' )
380380
381- Uuid . prototype [ customInspectSymbol ] = function ( ) {
381+ nativeBinding . Uuid . prototype [ customInspectSymbol ] = function ( ) {
382382 return this . toString ( ) ;
383383}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ function addInspector(filename) {
55 writeFileSync ( filename , readFileSync ( filename , "utf8" ) . concat ( `
66const customInspectSymbol = Symbol.for('nodejs.util.inspect.custom')
77
8- Uuid.prototype[customInspectSymbol] = function () {
8+ nativeBinding. Uuid.prototype[customInspectSymbol] = function () {
99 return this.toString();
1010}
1111` ) . trim ( ) ) ;
Original file line number Diff line number Diff line change @@ -224,9 +224,6 @@ impl ScyllaSession {
224224
225225 let result = QueryResult :: parser ( query_result) ;
226226
227- dbg ! ( result. clone( ) ) ;
228- dbg ! ( tracing. clone( ) ) ;
229-
230227 Ok ( json ! ( {
231228 "result" : result,
232229 "tracing" : tracing
You can’t perform that action at this time.
0 commit comments