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
This will be a major breaking change. As instead of just doing .setConfig({level: 7}) if they want debugging, they must now also do .setConfig({debug: true, level: 7}).
So will need to have to do something for this... Perhaps something like:
I suspect this would be a huge performance increase when not in debug mode. As fetching those lines is quite intensive if doing thousands of logs a minute.
Update
catepillar-human
to usedebug
property.This will be a major breaking change. As instead of just doing
.setConfig({level: 7})
if they want debugging, they must now also do.setConfig({debug: true, level: 7})
.So will need to have to do something for this... Perhaps something like:
However, if we specify a default like
false
, then the above won't work.Maybe just gotta break b/c compat.
Would also be interesting to see the performance comparison of this.
The text was updated successfully, but these errors were encountered: