Solid Framework has the ability to record detailed information to a log file. This can be used to identify the stages that occur during PDF parsing (or OCR) and document reconstruction.
To enable this functionality you just need to specify a path for the log file.
Typical code is as follows:
C#
string logPath = @"c:\test\solidframework.log";
if (System.IO.File.Exists(logPath)) {
System.IO.File.Delete(logPath);
}
SolidFramework.Plumbing.Logging.Instance.Path = logPath;
