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 {
30
30
31
31
if (dbWorkerProcess.exitCode != 0 ) {
32
32
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 ()}' );
34
34
}
35
35
36
36
final syncWorkerFilename = 'powersync_sync.worker.js' ;
@@ -54,7 +54,7 @@ Future<void> main() async {
54
54
55
55
if (syncWorkerProcess.exitCode != 0 ) {
56
56
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 ()}' );
58
58
}
59
59
60
60
// Copy this to all demo apps web folders
You can’t perform that action at this time.
0 commit comments