Skip to main content
Summary How to configure the Orbix logging
Article Number 34035
Environment Orbix 6.3.x All supported platforms
Question/Problem Description How to configure Orbix logging
How to increase logging for an Orbix subsystem
Configuring the event log filters
Resolution
Orbix logging is configured through the event_log filters. These sequences of variables set the logging level for each of Orbix's subsystem. For example, the following configures the IT_POA subsystem to display only error messages:
 
  event_log:filters = ["IT_POA=ERROR"];
 
Similarly, the following sets the IT_POA subsystem to display only error messages and also the IT_PSS_DB subsystem to display only warning, error and fatal messages:
 
  event_log:filters = ["IT_POA=ERROR", "IT_PSS_DB=WARN ERROR FATAL"];
 
An asterisk can be used as a wildcard character, either to specify all subsystems, or all message levels. For example, the following configures the IT_POA subsystem to display all messages:
 
  event_log:filters = ["IT_POA=*"];
 
Similarly, the following configures all subsystems to display all messages:
 
  event_log:filters = ["*=*"];
 
If unconfigured, a subsystem will display no messages.
Notes
List of all Orbix subsystems:
 
IT_ACTIVATOR = Activator daemon.
IT_ATLI2_IOP = Abstract Transport Layer Inter-ORB Protocol.
IT_ATLI2_IP = Abstract Transport Layer Internet Protocol Plug-in.
IT_ATLI2_ITMP = Abstract Transport Layer Multicast Plug-in.
IT_ATLI2_ITRP = Abstract Transport Layer Reliable Multicast Plug-in.
IT_ATLI2_SHM = Abstract Transport Layer Shared Memory Plug-in.
IT_ATLI_TLS = Abstract Transport Layer (secure).
IT_ClassLoading = Classloading plug-in (Java).
IT_CODESET = Internationalization plug-in.
IT_CONFIG_REP = Configuration repository.
IT_CORE = Core ORB.
IT_CSI = Common Secure Interoperability.
IT_GIOP = General Inter-Orb Protocol (transport layer).
IT_GSP = Generic Security Plug-in.
IT_IFR = Interface repository.
IT_IIOP = Internet Inter-Orb Protocol (transport layer).
IT_IIOP_PROFILE = Internet Inter-Orb Protocol profile (transport layer).
IT_IIOP_TLS = Internet Inter-Orb Protocol (secure transport layer).
IT_JAVA_SERVER = Java server plug-in
IT_LEASE = Session management service.
IT_LOCATOR = Server locator daemon.
IT_MGMT = Management instrumentation plug-in.
IT_MGMT_SVC = Management service.
IT_NAMING = Naming service.
IT_NOTIFICATION = Event service.
IT_NodeDaemon = Node daemon.
IT_OTS_LITE = Object transaction service.
IT_POA = Portable object adapter.
IT_POA_LOCATOR = Server locator daemon (POA specific).
IT_PSS = Persistent state service.
IT_PSS_DB = Persistent state service (raw database layer).
IT_PSS_R = Persistent state service (database driver).
IT_SCHANNEL = Microsoft Schannel (Windows only).
IT_TLS Transport = Layer Security.
IT_TS = Threading/synchronization package.
IT_XA = Open XA standard (transactions).


List of all message levels:

INFO_LO = Low verbosity informational messages.
INFO_MED = Medium verbosity informational messages.
INFO_HI = High verbosity informational messages.
INFO_ALL = All informational messages.
WARN = Warning messages.
ERR = Error messages.
FATAL = Fatal error messages.

 

 


#Orbix6
#KnowledgeDocs
#logging
#Orbix