backend-manager 4.2.14 → 4.2.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "backend-manager",
3
- "version": "4.2.14",
3
+ "version": "4.2.16",
4
4
  "description": "Quick tools for developing Firebase functions",
5
5
  "main": "src/manager/index.js",
6
6
  "bin": {
@@ -312,7 +312,7 @@ BackendAssistant.prototype._log = function () {
312
312
  const prefix = self.logPrefix ? ` ${self.logPrefix}:` : ':';
313
313
 
314
314
  // Prepend log prefix log string
315
- logs.unshift(`[${self.tag} @ ${new Date().toISOString()}]${prefix}`);
315
+ logs.unshift(`[${new Date().toISOString()}] ${self.tag}${prefix}`);
316
316
 
317
317
  // Get the log level
318
318
  const level = logs[1];