From 7157349c20f65d6846d0bbd378cc5cdcaa976846 Mon Sep 17 00:00:00 2001 From: Sagiv Oulu Date: Thu, 11 Jul 2024 13:09:55 +0300 Subject: [PATCH] fix: add total spans limit to debug log msg --- src/globals.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/globals.ts b/src/globals.ts index b97f63702..d662e835b 100644 --- a/src/globals.ts +++ b/src/globals.ts @@ -51,6 +51,7 @@ export class SpansContainer { logger.debug('Span was not added due to size limitations', { currentSpansSize: this.currentSpansSize, + maxSpansSize, }); warnSpansSizeOnce(maxSpansSize, this.currentSpansSize); return false;