-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Add filter to the logger #710
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Yamakaky
added a commit
to Yamakaky/vuex
that referenced
this issue
Mar 25, 2017
Yamakaky
added a commit
to Yamakaky/vuex
that referenced
this issue
Mar 25, 2017
Yamakaky
added a commit
to Yamakaky/vuex
that referenced
this issue
Mar 25, 2017
yyx990803
pushed a commit
that referenced
this issue
Apr 17, 2017
* Add filtering of the mutations logging Fixes #710 * Taste and colours
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What problem does this feature solve?
In my application, I need to display the current time, so I added a field that I update each second with a
new Date()
. The trouble is that it floods the console with updates notifications. I would like to be able to log all the mutations except this one.What does the proposed API look like?
I personally only care about
type
, but ifstate_before
andstate_after
are not too complicated to compute it may be useful.The text was updated successfully, but these errors were encountered: