Skip to content

Commit

Permalink
fix: print url in log
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikburmester committed Oct 2, 2024
1 parent 85cfe95 commit bb31807
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ async function bootstrap() {
const jellyfinUrl = process.env.JELLYFIN_URL;
try {
await axios.get(`${jellyfinUrl}/System/Info/Public`);
logger.log('Successfully connected to Jellyfin server');
logger.log('Successfully connected to Jellyfin server: ' + jellyfinUrl);
} catch (error) {
logger.error(
`Failed to connect to Jellyfin server at ${jellyfinUrl}: ${error.message}`,
Expand Down

0 comments on commit bb31807

Please sign in to comment.