From b105752d5386102f19537a10d759215f4abda0c4 Mon Sep 17 00:00:00 2001 From: Lilleman auf Larv Date: Wed, 23 Sep 2026 22:46:13 +0200 Subject: [PATCH] Log an ignored response-less command at verbose, since a peer drives it --- src/incoming-requests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/incoming-requests.ts b/src/incoming-requests.ts index 95d83c2..e29ac52 100644 --- a/src/incoming-requests.ts +++ b/src/incoming-requests.ts @@ -173,7 +173,7 @@ export class IncomingRequests { } if (!respNameFor(pduObj.cmdName)) { - this.log.info('session - ignoring a command SMPP gives no response', { cmdName: pduObj.cmdName }); + this.log.verbose('session - ignoring a command SMPP gives no response', { cmdName: pduObj.cmdName }); return; }