From cc97e8f3e498c99cfd67afb0f38e247cbbbe46e4 Mon Sep 17 00:00:00 2001 From: Mathew Kurian Date: Sat, 31 May 2014 06:07:08 -0500 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1945335..f92bd7c 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ app.use(scribe.express.logger(function(req, res){ // Express.js access l // Control Panel // -------------- -app.get('/log', scribe.express.controlPanel); // Enable web control panel +app.get('/log', scribe.express.controlPanel()); // Enable web control panel // Basic logging // -------------- @@ -118,15 +118,15 @@ console.t().log("Your message"); // [MY_APP_NAME] console.f(__filename).log("Your message"); // [file.js] Your message // Auto tagging -// ----------------- +// ------------ console.log("Your message"); // [invokedFrom.js:25] Your message ``` 6. Experimental ---- ```js -// Simple visually aided Testing -// ----------------- +// Simple Testing +// -------------- console.test("Test name").expect(5).should(5); // Pretty printed test results ``` Contributors