diff --git a/src/client/events/ready.js b/src/client/events/ready.js index 8e62a5d..e2752d7 100644 --- a/src/client/events/ready.js +++ b/src/client/events/ready.js @@ -25,7 +25,7 @@ module.exports = { client.stations = await fetch(client.config.stationslistUrl) .then(client.funcs.checkFetchStatus) .then(response => response.json()); - client.funcs.logger('Stations', 'Successfully fetched list' + "\n"); + client.funcs.logger('Stations', 'Successfully fetched list'); } catch (error) { client.funcs.logger('Stations', ' Fetching list failed'); console.error(error + "\n"); @@ -33,11 +33,11 @@ module.exports = { setInterval(async () => { try { - client.funcs.logger('Stations' + 'Started fetching list – ' + client.config.stationslistUrl); + client.funcs.logger('Stations', 'Started fetching list – ' + client.config.stationslistUrl); client.stations = await fetch(client.config.stationslistUrl) .then(client.funcs.checkFetchStatus) .then(response => response.json()); - console.log('Stations', 'Successfully fetched list' + "\n"); + client.funcs.logger('Stations', 'Successfully fetched list'); } catch (error) { client.funcs.logger('Stations', 'Fetching list failed'); //console.error(error);