From 30155782f56b0f8a2eec8084d2575cf483713612 Mon Sep 17 00:00:00 2001 From: Rhys Arkins <rhys@keylocation.sg> Date: Wed, 19 Jul 2017 08:41:09 +0200 Subject: [PATCH] chore(logs): Ignore start_time log field --- lib/logger/pretty-stdout.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/lib/logger/pretty-stdout.js b/lib/logger/pretty-stdout.js index 919d2efbe9..8948ac68d3 100644 --- a/lib/logger/pretty-stdout.js +++ b/lib/logger/pretty-stdout.js @@ -6,7 +6,16 @@ const util = require('util'); const chalk = require('chalk'); const stringify = require('json-stringify-pretty-compact'); -const bunyanFields = ['name', 'hostname', 'pid', 'level', 'v', 'time', 'msg']; +const bunyanFields = [ + 'name', + 'hostname', + 'pid', + 'level', + 'v', + 'time', + 'msg', + 'start_time', +]; const metaFields = [ 'repository', 'packageFile', -- GitLab