You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using Jest for testing and I'd like to avoid the default logging from this plugin under test. I worked through all the logger, logger proxy, and logger publisher types to get a no-op logger into the Resource class. However, I was dismayed to find that there is one stray console.debug in the code.
I'm guessing this was added for expediency to avoid adding debug to the Logger interface. Could the Logger interface be updated to accommodate this debug level logging and then have this code call this.lambdaLogger.debug() instead of console directly?