Ignore:
Timestamp:
2007/08/01 23:44:48 (19 years ago)
Author:
naka
Message:

ペイジェント決済モジュール

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-paygent/data/lib/glib.php

    r15120 r15162  
    8787 *----------------------------------------------------------------------*/ 
    8888function gfDebugLog($obj, $path = DEBUG_LOG_PATH){ 
    89         gfPrintLog("*** start Debug ***"); 
     89        $buffer = "*** start Debug ***\n";       
    9090        ob_start(); 
    9191        print_r($obj); 
    92         $buffer = ob_get_contents(); 
     92        $buffer.= ob_get_contents() . "\n"; 
    9393        ob_end_clean(); 
     94        $buffer.= "*** end Debug ***\n"; 
    9495        $fp = fopen($path, "a+"); 
    9596        fwrite( $fp, $buffer."\n" ); 
    9697        fclose( $fp ); 
    97         gfPrintLog("*** end Debug ***"); 
    98  
     98         
    9999        // ¥í¥°¥Æ¡¼¥·¥ç¥ó 
    100100        gfLogRotation(MAX_LOG_QUANTITY, MAX_LOG_SIZE, $path); 
Note: See TracChangeset for help on using the changeset viewer.