Changeset 16670


Ignore:
Timestamp:
2007/11/04 02:20:31 (16 years ago)
Author:
naka
Message:

gfDebugLogは、DEBUG_MODEが有効の場合に出力

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/util/GC_Utils.php

    r16582 r16670  
    112112     *----------------------------------------------------------------------*/ 
    113113    function gfDebugLog($obj){ 
     114        if(DEBUG_MODE === true) { 
    114115            GC_Utils::gfPrintLog("*** start Debug ***"); 
    115116            ob_start(); 
     
    121122            fclose( $fp ); 
    122123            GC_Utils::gfPrintLog("*** end Debug ***"); 
    123  
    124124            // ログテーション 
    125125            GC_Utils::gfLogRotation(MAX_LOG_QUANTITY, MAX_LOG_SIZE, LOG_PATH); 
     126        } 
    126127    } 
    127128 
Note: See TracChangeset for help on using the changeset viewer.