OTX-Runtime Converter  
OpenTestSystem.Otx.RuntimeConverter.Api Namespace Reference

Namespace containing the programming interface for for validation and compilation of PTX, PPX, PROJECT in own applications, main entry is IRuntimeConverter More...

Namespaces

namespace  Exceptions
 Namespace containing exceptions
 
namespace  License
 Namespace containing all objects related to licensing
 
namespace  Settings
 Namespace containing all objects related to DiagValidationGroups.
 
namespace  Validator
 Namespace containing all objects for validation.
 

Classes

class  Config
 Configuration class to modify global settings. More...
 
interface  IRuntimeConverter
 Represents a checker and a compiler. More...
 
class  RuntimeConverterFactory
 Factory class for creating RuntimeConverter, see IRuntimeConverter More...
 

Enumerations

enum class  TraceLevels {
  ALL , TRACE , DEBUG , INFO ,
  WARN , ERROR , FATAL , OFF
}
 Enumeration of TraceLevels More...
 

Detailed Description

Namespace containing the programming interface for for validation and compilation of PTX, PPX, PROJECT in own applications, main entry is IRuntimeConverter

Enumeration Type Documentation

◆ TraceLevels

Enumeration of TraceLevels

Enumerator
ALL 

All messages will be logged. Please note that this may have a major influence on runtime performance.

TRACE 

Messages with severity TRACE or above will be logged. Severity level TRACE contains even more detailed information. Please note that this may have a major influence on runtime performance.

DEBUG 

Messages with severity DEBUG or above will be logged. Severity level DEBUG contains detailed information on the flow through the sequence. Please note that this may have a major influence on runtime performance.

INFO 

Messages with severity INFO or above will be logged. Severity level INFO contains interesting runtime events.

WARN 

Messages with severity WARN or above will be logged. Severity level WARN contains other runtime situations that are undesirable or unexpected, but not necessarily "wrong".

ERROR 

Messages with severity ERROR or above will be logged (this is the default setting). Severity level ERROR contains other runtime errors or unexpected conditions.

FATAL 

Messages with severity FATAL will be logged. Severity level FATAL contains severe errors that cause premature termination.

OFF 

Nothing will be logged.