com.clover.remotepay.transport.CloverTransport.TransportLog C# (CSharp) Method

TransportLog() protected method

protected TransportLog ( string msg ) : void
msg string
return void
        protected void TransportLog(string msg)
        {
            if (enableLogging)
            {
                if(msg.Length > 5000)
                {
                    msg = msg.Substring(0, 5000) + "...";
                }
                Trace.WriteLine(msg);
            }
        }