Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

When reading large Nhax files it is recommended to read a moderate number of patients.

Nhax Logger Interface

Logging in NhaxLib can be enable either by implementing the Nhax logger interface INhaxLogger or create and use the simple logger that NhaxLib implements. The logger must be added using NhaxLogger.AddLogger.

Using the NhaxLib logger:

string logPath = @"c:\..."
INhaxLogger Logger = NhaxLogger.CreateLogger(logPath, true, 10 * 1024 * 1024);
NhaxLogger.AddLogger(Logger, NhaxLogLevel.Debug);

Sample