We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47ea86d commit 4103d24Copy full SHA for 4103d24
src/bots/spotFiller.ts
@@ -1979,10 +1979,6 @@ export class SpotFillerBot implements Bot {
1979
if (cfg && isVariant(cfg.status, 'enabled')) {
1980
fulfillmentConfig = cfg;
1981
}
1982
- } else {
1983
- logger.error(
1984
- `unknown fallback source: ${fallbackSource} (fillTxId: ${fillTxId})`
1985
- );
1986
1987
1988
logMessageForNodeToFill(
src/webhook.ts
@@ -50,7 +50,7 @@ export async function webhookMessage(
50
51
await axios.post(webhook, data);
52
} catch (err) {
53
- logger.info('webhook error');
+ logger.info(`webhook error: ${err}`);
54
55
56
0 commit comments