mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 23:26:18 +00:00
31e1088aa7
Now we do boot logging to an array. We harvest it in the —verbose command. We still need to provide a way to access the log in the browser too.
35 lines
633 B
JavaScript
35 lines
633 B
JavaScript
/*\
|
|
title: $:/core/modules/commands/verbose.js
|
|
type: application/javascript
|
|
module-type: command
|
|
|
|
Verbose command
|
|
|
|
\*/
|
|
(function(){
|
|
|
|
/*jslint node: true, browser: true */
|
|
/*global $tw: false */
|
|
"use strict";
|
|
|
|
exports.info = {
|
|
name: "verbose",
|
|
synchronous: true
|
|
};
|
|
|
|
var Command = function(params,commander) {
|
|
this.params = params;
|
|
this.commander = commander;
|
|
};
|
|
|
|
Command.prototype.execute = function() {
|
|
this.commander.verbose = true;
|
|
// Output the boot message log
|
|
this.commander.streams.output.write("Boot log:\n " + $tw.boot.logMessages.join("\n ") + "\n");
|
|
return null; // No error
|
|
};
|
|
|
|
exports.Command = Command;
|
|
|
|
})();
|