diff --git a/dist/lib/scout/index.js b/dist/lib/scout/index.js index 4842658..297e71d 100644 --- a/dist/lib/scout/index.js +++ b/dist/lib/scout/index.js @@ -560,7 +560,6 @@ class Scout extends events_1.EventEmitter { this.asyncNamespace.set(key, undefined); } catch (_a) { - this.logFn("failed to clear async namespace", types_1.LogLevel.Debug); } } // Helper for creating an ExternalProcessAgent for an existing, listening agent diff --git a/lib/scout/index.ts b/lib/scout/index.ts index b063bab..05740e0 100644 --- a/lib/scout/index.ts +++ b/lib/scout/index.ts @@ -755,7 +755,6 @@ export class Scout extends EventEmitter { try { this.asyncNamespace.set(key, undefined); } catch { - this.logFn("failed to clear async namespace", LogLevel.Debug); } }