Skip to content

Commit

Permalink
fix: bad initialization BootUpService
Browse files Browse the repository at this point in the history
  • Loading branch information
tomassasovsky committed Aug 1, 2024
1 parent a235a7d commit 1fa14d5
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .devcontainer/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '3.9'
services:
# Update this to the name of the service you want to work with in your docker-compose.yml file
radio_horizon:
Expand Down
1 change: 0 additions & 1 deletion docker-compose.prod.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '3.9'
services:
radio_horizon:
image: ghcr.io/tomassasovsky/radio-horizon.dart:latest
Expand Down
1 change: 0 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '3.9'
services:
radio_horizon:
build:
Expand Down
4 changes: 3 additions & 1 deletion lib/src/services/bootup.dart
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ class BootUpService {
),
);
} catch (e) {
Logger('BootUpService').shout('Error during bootup', e);
Logger.root.info(
'Failed to initialize radio for guild: ${playing.guildId}',
);
}
}
}
Expand Down

0 comments on commit 1fa14d5

Please sign in to comment.