blob: 8e47959c199946b0590d37718b3fcbb50e49e33e [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
var $ = require('./util/jquery');
/**
* Global variable exports for console debug.
*/
function debug(app) {
global.travel = app;
global.$ = $;
}
debug.log = function(message) {
if (console.debug) {
console.debug(message);
}
};
module.exports = debug;