Skip to content

Commit 35a6292

Browse files
committedFeb 1, 2024·
added error message to startup without config
1 parent 1a6c535 commit 35a6292

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1092,7 +1092,7 @@ class dysonAirPurifier extends utils.Adapter {
10921092
this.main();
10931093
})
10941094
.catch( (error) => {
1095-
adapter.log.warn('This adapter has no or no valid configuration. Starting anyway to give you the opportunity to configure it properly.');
1095+
adapter.log.warn('This adapter has no or no valid configuration. Starting anyway to give you the opportunity to configure it properly. ' + error);
10961096
this.setState('info.connection', false, true);
10971097
});
10981098
}

0 commit comments

Comments
 (0)
Please sign in to comment.