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

InfoFormat() public static method

public static InfoFormat ( string format ) : void
format string
return void
        public static void InfoFormat(string format, params object[] args)
        {
            if(IsInfoEnabled)
            {
                s_trace.Info(string.Format(format, args));
            }
        }