Add barebones support for timing HTTP response generation times

This commit is contained in:
Jeremy Ruston
2024-02-02 15:42:47 +00:00
parent 6675358e85
commit 2c810faeeb
2 changed files with 12 additions and 8 deletions
+2 -1
View File
@@ -36,7 +36,8 @@ Command.prototype.execute = function() {
// Set up server
this.server = new Server({
wiki: this.commander.wiki,
variables: self.params
variables: self.params,
verbose: this.commander.verbose
});
var nodeServer = this.server.listen();
$tw.hooks.invokeHook("th-server-command-post-start",this.server,nodeServer,"tiddlywiki");