log webhook error

This commit is contained in:
wphan
2023-12-20 16:18:35 -08:00
parent 07a566ebf8
commit bb18567b83

View File

@@ -50,7 +50,7 @@ export async function webhookMessage(
await axios.post(webhook, data);
} catch (err) {
logger.info('webhook error');
logger.error('webhook error', err);
}
}
}