//To resolve CRPG018301: QoS: build a client side logging framework 
function Logger()
{
    try
    {
        this.Trace = "TRACE";
        this.Debug = "DEBUG";
        this.Info = "INFO";
        this.Warn = "WARN";
        this.Error = "ERROR";
        this.Fatal = "FATAL";
        
        //public functions
        this.LogMethodDetails = function () {};         
        this.LogArguments = function (){};        
        this.LogAll = function (){};
       
    }
    catch(ex)
    {
        
    }
}

var objLogger = new Logger();