Line | |
---|
1 | using System;
|
---|
2 |
|
---|
3 | namespace 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.