mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Rename infoPrefix since it is confusing.
This commit is contained in:
@@ -185,7 +185,7 @@ Log.format = function (obj, options) {
|
||||
var sourceInfo = (fileName && lineNumber) ?
|
||||
'(' + fileName + ':' + lineNumber + ')' : '';
|
||||
|
||||
var infoPrefix = [
|
||||
var metaPrefix = [
|
||||
level.charAt(0).toUpperCase(),
|
||||
dateStamp,
|
||||
'-',
|
||||
@@ -202,7 +202,7 @@ Log.format = function (obj, options) {
|
||||
}
|
||||
};
|
||||
|
||||
return prettify(infoPrefix, META_COLOR)
|
||||
return prettify(metaPrefix, META_COLOR)
|
||||
+ ' '
|
||||
+ prettify(message, LEVEL_COLORS[level]);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user