mirror of
https://github.com/mathew-kurian/Scribe.js
synced 2025-08-22 17:41:23 +00:00
Switch to ISO Date (shorter)
This commit is contained in:
parent
c5d042149b
commit
8987f3cddf
1 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@
|
||||||
* @return {String} timestamp to String
|
* @return {String} timestamp to String
|
||||||
*/
|
*/
|
||||||
var buildTime = function (timestamp) {
|
var buildTime = function (timestamp) {
|
||||||
return (new Date(timestamp)).toString() + " ";
|
return (new Date(timestamp)).toISOString() + " ";
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -148,7 +148,7 @@
|
||||||
* Console2.prototype.tag
|
* Console2.prototype.tag
|
||||||
*
|
*
|
||||||
* Add tags
|
* Add tags
|
||||||
* @param {String} tag
|
* @param {*} tag
|
||||||
*/
|
*/
|
||||||
Console2.prototype.tag = Console2.prototype.t = function () {
|
Console2.prototype.tag = Console2.prototype.t = function () {
|
||||||
var tags = Array.prototype.slice.call(arguments, 0);
|
var tags = Array.prototype.slice.call(arguments, 0);
|
||||||
|
|
Loading…
Add table
Reference in a new issue