summaryrefslogtreecommitdiffstats
path: root/devtools/client/shared/redux/middleware/log.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/shared/redux/middleware/log.js')
-rw-r--r--devtools/client/shared/redux/middleware/log.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/devtools/client/shared/redux/middleware/log.js b/devtools/client/shared/redux/middleware/log.js
index 4ea09491ca..c9af48f1d3 100644
--- a/devtools/client/shared/redux/middleware/log.js
+++ b/devtools/client/shared/redux/middleware/log.js
@@ -7,7 +7,7 @@
* A middleware that logs all actions coming through the system
* to the console.
*/
-function log({ dispatch, getState }) {
+function log() {
return next => action => {
try {
// Only print the action type, rather than printing the whole object