You are here: Start » FILDL.DL_ConfigureLogging Method

FILDL.DL_ConfigureLogging Method

Namespace:FilNet.DeepLearning
Assembly:FilDl.Net.dll

Syntax

public static void DL_ConfigureLogging
(
	FilNet.DeepLearningLogLevel inMinLogLevel
)

Parameters

Name Type Range Default Description
inMinLogLevelFilNet.DeepLearningLogLevel

Description

This tool may be used to control amount of logs generated by other Deep Learning tools. By default, only Error, Warning and Info messages are logged. In a typical operation it may generate several megabytes of data. One file per day is created. Only last 3 files are stored - the rest is deleted to contain size of log files.

If such disk space consumption is unacceptable, inMinLogLevel may be set to Warning or even Error. This will ensure that subsequent calls to Deep Learning will write substantially less data (if anything). However, it will not lead to any observable performance improvement.

Using Debug or Trace leads to much larger log files and worse performance. It should be used only to diagnose problems.

This tool is safe to call from multiple workers or threads. However, it is advisable to call this tool at the beginning of each worker/thread using Deep Learning tools.

Please note, that this mechanism is completely independent of the logging system in FabImage Studio or FabImage Library.

See also