logcolor.js 273 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 var casper = require("casper").create({ verbose: true, logLevel: "debug" }); casper.log("this is a debug message", "debug"); casper.log("and an informative one", "info"); casper.log("and a warning", "warning"); casper.log("and an error", "error"); casper.exit();