diff --git a/cypress/support/e2e.ts b/cypress/support/e2e.ts index 11eae401f9e..b98732f11f6 100644 --- a/cypress/support/e2e.ts +++ b/cypress/support/e2e.ts @@ -50,7 +50,9 @@ installLogsCollector({ "cons:info", "cons:warn", "cons:error", - // "cons:debug", + // most of our logs go through `loglevel`, which sets `logger.log` to be an alias of `logger.debug`. + // Hence, if we want to capture `logger.log` lines, we need to enable `cons:debug` here. + "cons:debug", "cy:log", "cy:xhr", "cy:fetch",