diff --git a/rpc.js b/rpc.js index 45be04cc7..07ad2e1cd 100644 --- a/rpc.js +++ b/rpc.js @@ -789,7 +789,7 @@ RPC.create = function (config /*:typeof(ConfigType)*/, cb /*:(?Error, ?Function) var warn = function (e, output) { if (e && !config.suppressRPCErrors) { - console.error('[' + e + ']', output); + console.error(new Date().toISOString() + ' [' + e + ']', output); } };