Ejemplo n.º 1
0
        public void WriteError(string errorMsg)
        {
            LogParameters log = new LogParameters(LogParameters.LogType.Error, errorMsg);

            _errorCollectionList.Add(log);
        }
Ejemplo n.º 2
0
        public void WriteWarning(string warningMsg)
        {
            LogParameters log = new LogParameters(LogParameters.LogType.Warning, warningMsg);

            _errorCollectionList.Add(log);
        }
Ejemplo n.º 3
0
        //Just callthese methods to log something

        public void WriteInfo(string infoMsg)
        {
            LogParameters log = new LogParameters(LogParameters.LogType.Info, infoMsg);

            _errorCollectionList.Add(log);
        }