Skip to content

Commit a4e2a0a

Browse files
committed
Utils: Compress timestamp, include content argument in log
1 parent fb7780d commit a4e2a0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ var alertBrowserStack = function alertBrowserStack(subject, content, params, fn)
5151
var urlObject = url.parse(endpoint);
5252

5353
var context = config.alert_context || 'Runner alert';
54-
logger.info('[%s] [%s] %s', new Date(), context, subject);
54+
logger.info('[%s] [%s] %s, %s', new Date().toISOString(), context, subject, content);
5555

5656
if (typeof fn !== 'function') {
5757
if (typeof params === 'function') {

0 commit comments

Comments
 (0)