PureEngage On-Premises

 View Only

Sign Up

Expand all | Collapse all

what is the procedure to enable logs on a callflow (composer)? Do i have to configure the web.config file?

  • 1.  what is the procedure to enable logs on a callflow (composer)? Do i have to configure the web.config file?

    Posted 08-28-2015 18:15
    This is my web.config

     <log4net>
        <appender name="RollingLogFileAppender" type="log4net.Appender.RollingFileAppender">
          <file value=".\logs\composer.log"/>
          <appendToFile value="true"/>
          <rollingStyle value="Composite"/>
          <datePattern value="yyyyMMdd"/>
          <maxSizeRollBackups value="10"/>
          <maximumFileSize value="1MB"/>
          <layout type="log4net.Layout.PatternLayout">
            <conversionPattern value="%date [%thread] %-5level %logger - %message%newline"/>
          </layout>
        </appender>
        <root>
          <level value="DEBUG"/>
          <appender-ref ref="RollingLogFileAppender"/>
        </root>
        <!-- log only messages of level DEBUG or above in the package specified below -->
        <logger name="getWebRequest">
          <level value="DEBUG"/>
        </logger>

        <logger name="getWebService">
          <level value="DEBUG"/>
        </logger>

        <logger name="dbRequest">
          <level value="DEBUG" />
        </logger>

        <logger name="dbInputForm">
          <level value="DEBUG" />
        </logger>
      
        <logger name="recordCapture">
          <level value="DEBUG" />
        </logger>
      </log4net>


  • 2.  RE: what is the procedure to enable logs on a callflow (composer)? Do i have to configure the web.config file?

    Posted 08-28-2015 18:16
    Right now i dont see any txt log file at the specified path


  • 3.  RE: what is the procedure to enable logs on a callflow (composer)? Do i have to configure the web.config file?

    Posted 08-31-2015 08:57
    Try to set the absolute path to the log and not relative. In any case, I think that the logging is on IIS level, so the logs should be placed under intepub folder, but it depends on your webapp and IIS configuration.


  • 4.  RE: what is the procedure to enable logs on a callflow (composer)? Do i have to configure the web.config file?

    Posted 08-31-2015 17:08
    Thanks, the log is located at the inetpub folder.

    Thank you!