Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.EPPlus/4.0.3/EPPlus-4.0.3/FormulaParsing/Logging/IFormulaParserLogger.cs @ 12074

Last change on this file since 12074 was 12074, checked in by sraggl, 9 years ago

#2341: Added EPPlus-4.0.3 to ExtLibs

File size: 516 bytes
Line 
1using System;
2
3namespace OfficeOpenXml.FormulaParsing.Logging
4{
5    /// <summary>
6    /// Used for logging during FormulaParsing
7    /// </summary>
8    public interface IFormulaParserLogger : IDisposable
9    {
10        void Log(ParsingContext context, Exception ex);
11        void Log(ParsingContext context, string message);
12        void Log(string message);
13        void LogCellCounted();
14
15        void LogFunction(string func);
16        void LogFunction(string func, long milliseconds);
17    }
18}
Note: See TracBrowser for help on using the repository browser.