Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(658)

Unified Diff: Source/devtools/front_end/ConsoleViewMessage.js

Issue 185713007: DevTools: Add timestamp support in the console (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/devtools/front_end/ConsoleViewMessage.js
diff --git a/Source/devtools/front_end/ConsoleViewMessage.js b/Source/devtools/front_end/ConsoleViewMessage.js
index 5815e514758e53b8bbf49d209d5aeba6570e136c..d55be44a479eecf1d9989e2b4bfcad4adcc53ed2 100644
--- a/Source/devtools/front_end/ConsoleViewMessage.js
+++ b/Source/devtools/front_end/ConsoleViewMessage.js
@@ -844,6 +844,23 @@ WebInspector.ConsoleViewMessage.prototype = {
return regexObject.test(this._formattedMessageText()) || (!!this._anchorElement && regexObject.test(this._anchorElement.textContent));
},
+ _updateTimestamp: function()
+ {
+ if (!this.timestampElement)
apavlov 2014/03/06 09:56:20 I suspect it should always be present (see below).
+ return;
+
+ var date = new Date(this._message.timestamp * 1000);
apavlov 2014/03/06 09:56:20 This is the only client of ConsoleMessage.timestam
+ var str = date.getFullYear() + "-"
+ + ("0" + (date.getMonth() + 1)).slice(-2) + "-"
apavlov 2014/03/06 09:56:20 This slicing is relatively slow, and I suspect it
+ + ("0" + date.getDate()).slice(-2) + " "
+ + ("0" + date.getHours()).slice(-2) + ":"
+ + ("0" + date.getMinutes()).slice(-2) + ":"
+ + ("0" + date.getSeconds()).slice(-2) + "."
+ + date.getMilliseconds();
eustas 2014/03/06 15:40:05 Milliseconds should be padded.
+
+ this.timestampElement.textContent = str;
+ },
+
/**
* @return {!Element}
*/
@@ -879,6 +896,14 @@ WebInspector.ConsoleViewMessage.prototype = {
if (this._message.type === WebInspector.ConsoleMessage.MessageType.StartGroup || this._message.type === WebInspector.ConsoleMessage.MessageType.StartGroupCollapsed)
element.classList.add("console-group-title");
+ if (WebInspector.settings.consoleTimestampsEnabled.get()) {
apavlov 2014/03/06 09:56:20 We should also think of a way to add/remove the ti
+ this.timestampElement = document.createElement("span");
apavlov 2014/03/06 09:56:20 This snippet can be written as: this.timestampEle
+ this.timestampElement.className = "console-timestamp";
+ this._updateTimestamp();
+
+ element.appendChild(this.timestampElement);
+ }
+
element.appendChild(this.formattedMessage());
if (this._message.repeatCount > 1)
@@ -924,6 +949,7 @@ WebInspector.ConsoleViewMessage.prototype = {
this._element.classList.add("repeated-message");
}
this.repeatCountElement.textContent = this._message.repeatCount;
+ this._updateTimestamp();
},
/**

Powered by Google App Engine
This is Rietveld 408576698