diff --git a/lib/logger/pretty-stdout.js b/lib/logger/pretty-stdout.js
index 919d2efbe9f7b6a1cae1f4dd0e0de70bfb29a651..8948ac68d3ec18c03d9c556230bfb3a0bb443418 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',