Amazon.Runtime.Internal.Util.InternalFileLogger.InfoFormat C# (CSharp) 메소드

InfoFormat() 공개 메소드

Prints the Log With Info Level
public InfoFormat ( string message ) : void
message string
리턴 void
        public override void InfoFormat(string message, params object[] arguments)
        {
            Log(LogLevel.Info, string.Format(message, arguments));
        }