File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ Future<void> main() async {
3030
3131 if (dbWorkerProcess.exitCode != 0 ) {
3232 throw Exception (
33- 'Could not compile db worker: ${dbWorkerProcess .stdout .toString ()}' );
33+ 'Could not compile db worker. \n stdout : ${dbWorkerProcess .stdout . toString ()} \n stderr: ${ dbWorkerProcess . stderr .toString ()}' );
3434 }
3535
3636 final syncWorkerFilename = 'powersync_sync.worker.js' ;
@@ -54,7 +54,7 @@ Future<void> main() async {
5454
5555 if (syncWorkerProcess.exitCode != 0 ) {
5656 throw Exception (
57- 'Could not compile sync worker: ${dbWorkerProcess .stdout .toString ()}' );
57+ 'Could not compile sync worker:\n stdout: ${syncWorkerProcess .stdout . toString ()} \n stderr: ${ syncWorkerProcess . stderr .toString ()}' );
5858 }
5959
6060 // Copy this to all demo apps web folders
You can’t perform that action at this time.
0 commit comments