File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ export class PowerSyncDatabase extends AbstractPowerSyncDatabase {
186186 connector : PowerSyncBackendConnector ,
187187 options : RequiredAdditionalConnectionOptions
188188 ) : StreamingSyncImplementation {
189- const remote = new WebRemote ( connector ) ;
189+ const remote = new WebRemote ( connector , this . logger ) ;
190190 const syncOptions : WebStreamingSyncImplementationOptions = {
191191 ...( this . options as { } ) ,
192192 retryDelayMs : options . retryDelayMs ,
@@ -198,7 +198,8 @@ export class PowerSyncDatabase extends AbstractPowerSyncDatabase {
198198 await this . waitForReady ( ) ;
199199 await connector . uploadData ( this ) ;
200200 } ,
201- identifier : this . database . name
201+ identifier : this . database . name ,
202+ logger : this . logger
202203 } ;
203204
204205 switch ( true ) {
You can’t perform that action at this time.
0 commit comments