Previous Topic Next topic Print topic


mf.see.admin Component Trace Properties

The mf.see.admin component is used to specify the tracing required for the MicroFocus.SEE.UI.Admin and MicroFocus.SEE.UI.SnapIn assemblies. It contains the following options:
mftrace.level.mf.see.admin
Sets the trace level:
  • debug
  • info
  • warn
  • error
  • fatal
mftrace.comp.mf.see.admin#region
Enables or disables region operations tracing:
  • True: Enables region operations tracing.
  • False: Disables region operations tracing.
mftrace.comp.mf.see.admin#services
Enables or disables service invocation tracing:
  • True: Enables service invocation tracing.
  • False: Disables service invocation tracing.
Note: To trace the MMC administration user interface, the trace configuration must be included in the MMC app.config file \windows\system32\mmc.exe.config.
The following shows a sample mmc.exe.config file that specifies tracing for the mf.see.admin and mf.see.configuration components.
<?xml version ="1.0"?>
<configuration>
  <configSections>
    <sectionGroup name="MicroFocus.COBOL.Tracing">
      <section name="mftrace_config" type="MicroFocus.COBOL.Runtime.CdataSectionHandler,MicroFocus.COBOL.Runtime.Win32,Version=4.0.0.0,Culture=neutral,PublicKeyToken=0412c5e0b2aaa8f0" />
    </sectionGroup>
  </configSections>

  <MicroFocus.COBOL.Tracing>
    <mftrace_config>
      <![CDATA[>
mftrace.emitter.binfile#file               = see.ctb
mftrace.emitter.binfile#location           = c:\logs
mftrace.emitter.binfile#multiproc          = true

mftrace.level.mf.see.admin                 = debug
mftrace.comp.mf.see.admin#region           = true
mftrace.comp.mf.see.admin#services         = true

mftrace.level.mf.see.configuration         = debug
mftrace.comp.mf.see.configuration#region   = true
mftrace.comp.mf.see.configuration#services = true

mftrace.level.mf.see.utils                 = debug
mftrace.comp.mf.see.utils#services         = true
      <]]>
    </mftrace_config>
  </MicroFocus.COBOL.Tracing>

</configuration>
Previous Topic Next topic Print topic