Amazon.Runtime.Internal.Util.InternalFileLogger.InfoFormat C# (CSharp) Method

InfoFormat() public method

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