Index: chrome/browser/resources/hotword/logging.js |
diff --git a/chrome/browser/resources/hotword/logging.js b/chrome/browser/resources/hotword/logging.js |
index 9ab9a1240ba2e64e990003ed7c7fd1d98d2c05d1..307234d0990125b7e7e6fff1ff5a7be00eb17220 100644 |
--- a/chrome/browser/resources/hotword/logging.js |
+++ b/chrome/browser/resources/hotword/logging.js |
@@ -8,8 +8,9 @@ cr.define('hotword', function() { |
/** |
* Wrapper around console.log allowing debug log message to be enabled during |
* development. |
+ * @param {...*} varArgs |
*/ |
- function debug() { |
+ function debug(varArgs) { |
if (hotword.DEBUG || window.localStorage['hotword.DEBUG']) |
console.log.apply(console, arguments); |
} |