File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,10 @@ export class SQLiteCloudConnection {
5151 this . transport = new transport . WebSocketTransport ( )
5252 this . transport . connect ( this . config , error => {
5353 if ( error ) {
54- console . error ( `SQLiteCloudConnection.connect - error while connecting WebSocketTransport: ${ error . toString ( ) } ` , this . config , error )
54+ console . error (
55+ `SQLiteCloudConnection.connect - error while connecting WebSocketTransport: ${ error . toString ( ) } to ${ this . config . host } :${ this . config . port } ` ,
56+ error
57+ )
5558 this . close ( )
5659 }
5760 callback ?. call ( this , error || null )
@@ -68,7 +71,10 @@ export class SQLiteCloudConnection {
6871 this . transport = new transport . TlsSocketTransport ( )
6972 this . transport . connect ( this . config , error => {
7073 if ( error ) {
71- console . error ( `SQLiteCloudConnection.connect - error while connecting TlsSocketTransport: ${ error . toString ( ) } ` , this . config , error )
74+ console . error (
75+ `SQLiteCloudConnection.connect - error while connecting TlsSocketTransport: ${ error . toString ( ) } to ${ this . config . host } :${ this . config . port } ` ,
76+ error
77+ )
7278 this . close ( )
7379 }
7480 callback ?. call ( this , error || null )
You can’t perform that action at this time.
0 commit comments