Scytl / freddie

Front end development server
MIT License
4 stars 1 forks source link

log to a notification service #14

Open pfraces opened 9 years ago

pfraces commented 9 years ago
var notify = require('../node_modules/grunt-notify/lib/notify-lib'),
    title = 'freddie has taken the stage!';

var logger = function (msg) {
  // notify({ title: staticPath, message: 'MOCK listening at ' + server.address().port });
  notify({ title: title, message: msg });
});