Add package to log command details

Logs the count and most recent time a command
is triggered and displays them in a sorted list.
This commit is contained in:
Kevin Sawicki
2012-12-27 14:05:21 -08:00
parent 1396794a12
commit 92661041f8
4 changed files with 143 additions and 0 deletions

25
static/command-logger.css Normal file
View File

@@ -0,0 +1,25 @@
.command-logger {
position: absolute;
width: 100%;
height: 100%;
top: 0px;
left: 0px;
background: #1e1e1e;
color: #d2d2d2;
overflow: auto;
opacity: 0.85;
z-index: 99;
padding: 20px;
}
.command-logger li {
padding: 5px;
}
.command-logger .event-count {
padding-right: 10px;
}
.command-logger .event-description {
padding-right: 10px;
}