lib/har/viewer/scripts/core/trace.js

Summary

Maintainability
A
0 mins
Test Coverage
/* See license.txt for terms of usage */

define("core/trace", [
],

function() {

//*************************************************************************************************

var Trace = {
    log: function(){},
    error: function(){},
    exception: function(){},
    time: function(){},
    timeEnd: function(){}
};

if (typeof(console) == "undefined")
    return Trace;


return Trace;

//*************************************************************************************************
});