Apache.NMS.Tracer.Info C# (CSharp) Method

Info() public static method

public static Info ( object message ) : void
message object
return void
        public static void Info(object message)
        {
            if(IsInfoEnabled)
            {
                s_trace.Info(message.ToString());
            }
        }