Begin all console error messages with "Error"

This will make it easier to search for errors in logs.
This commit is contained in:
John Karahalis 2018-09-04 12:37:47 -04:00
Родитель 2e3c803d9d
Коммит 64fae8172d
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -41,7 +41,8 @@ app.use(morgan('combined'));
app.get('/', (req, res) => {
unflatten(data, (error, output) => {
if (error) {
return res.status(500).send(error);
console.error('Error: ' + error);
return res.status(500).send('Error: ' + error);
}
res.send(output);
});
@ -55,7 +56,8 @@ app.get('/__version__', (req, res) => {
app.get('/__heartbeat__', (req, res) => {
request(data, error => {
if (error) {
return res.status(500).send('Cannot fetch ' + data);
console.error('Error: Cannot fetch ' + data);
return res.status(500).send('Error: Cannot fetch ' + data);
}
res.sendStatus(200);
});