Abstractions.Logging.LibraryLogging.Info C# (CSharp) Method

Info() public static method

public static Info ( string message ) : void
message string
return void
        public static void Info(string message, params object[] args)
        {
            if(InfoEvent != null)
                InfoEvent(message, args);
        }