project BLF > class tLogger > method GetLogFileLocations


Parameters


ocLogFileLocationsoutputcharacter
oiReturnStatusoutputintegerReturn status of the method.


Internal usage


BLF
method ComponentPool.GetLogFileLocations


program code (program1/tlogger.p)

if get-bits(viLoggerDebugLevel, 1, 2) > 0      /* Bits 1, 2 */
or get-bits(viLoggerDebugLevel, 4, 1) > 0 then /* Bit 4 */
    assign 
        ocLogFileLocations = vcLogBusinessCodeFile.

if get-bits(viLoggerDebugLevel, 5, 1) > 0 then /* Bit 5 */
    assign 
        ocLogFileLocations = 
            ocLogFileLocations 
            + (if ocLogFileLocations = "" then "" else ";")
            + vcLogDatabaseAccessFile.
    
if get-bits(viLoggerDebugLevel, 6, 1) > 0 then /* Bit 6 */
    assign 
        ocLogFileLocations = 
            ocLogFileLocations 
            + (if ocLogFileLocations = "" then "" else ";")
            + vcLogUnitTestFile.