all log_mop call substituted with other log functions
authorMatteo Nastasi (mop) <nastasi@alternativeoutput.com>
Thu, 1 Dec 2011 09:10:14 +0000 (10:10 +0100)
committerMatteo Nastasi (mop) <nastasi@alternativeoutput.com>
Thu, 1 Dec 2011 09:10:14 +0000 (10:10 +0100)
web/Obj/brisk.phh
web/Obj/dbase_pgsql.phh
web/briskin5/index_rd.php
web/briskin5/index_wr.php
web/index_rd.php
web/index_wr.php

index 89385a2..6da86a8 100644 (file)
@@ -74,7 +74,7 @@ define(DBG_LMOP, 0x0800);
 define(DBG_TRAC, 0x1000);
 define(DBG_SHME, 0x2000);
 // NOTE: BRISK DEBUG must be a numerical constant, not the result of operations on symbols 
-define(BRISK_DEBUG, 0xffffffbf);
+define(BRISK_DEBUG, 0x0800);
 
 define(BRISK_SINGLE_DEBUG,0);
 define(BRISK_SINGLE_SESS, "");
index 1a05b70..1647617 100644 (file)
@@ -55,7 +55,7 @@ class DBConn
         }
 
         $out = new DBConn();
-        
+
         return $out;
     }
     function db()
@@ -84,8 +84,9 @@ class BriskDB
         log_main("BriskDB create:start");
         
         do {
-            if (($dbconn = DBConn::create()) == FALSE) 
+            if (($dbconn = DBConn::create()) == FALSE) {
                 break;
+            }
             
             $ret = new BriskDB($dbconn);
         } while (0);
index cdb448e..a571704 100644 (file)
@@ -337,7 +337,7 @@ function maincheck($sess, $cur_stat, $cur_subst, $cur_step, &$new_stat, &$new_su
                 $new_step =  $user->step;
             } while (0);
             
-            log_mop($user->step, 'bin::index_rd.php: after ret set');
+            log_rd2($user->step, 'bin::index_rd.php: after ret set');
             
             if ($user->the_end == TRUE) {
                 log_rd2("LOGOUT BYE BYE!!");
@@ -424,7 +424,7 @@ for ($i = 0 ; time() < $endtime ; $i++) {
     echo ' @END@'; 
     log_send("EXT_STEP: ".$ext_step." ENDTIME: [".$endtime."] ".$ret);
     mop_flush();
-    log_mop(0, 'bin::index_rd.php: after mop_flush (begin: '.sprintf("%f", $pre_main).')');
+    log_rd2(0, 'bin::index_rd.php: after mop_flush (begin: '.sprintf("%f", $pre_main).')');
     if ($is_page_streaming)
       break;
   }
index 1eabe2c..e755965 100644 (file)
@@ -50,7 +50,7 @@ log_wr('COMM: '.$mesg);
 if ($table_idx < 0 || $table_idx >= TABLE_N)
      exit;
 
-log_mop(0, 'bin::index_wr.php: COMM: '.xcapemesg($mesg));
+log_wr(0, 'bin::index_wr.php: COMM: '.xcapemesg($mesg));
 
 $sem = Bin5::lock_data(TRUE, $table_idx);
 
@@ -70,7 +70,7 @@ if (($user = &$bri->get_user($sess, &$idx)) == FALSE) {
 $argz = explode('|', $mesg);
 
 log_wr('POSTSPLIT: '.$argz[0].'  user->stat: ['.$user->stat.']');
-log_mop($user->step, 'bin::index_wr.php: after get_user()');
+log_wr($user->step, 'bin::index_wr.php: after get_user()');
 
 if (false && $argz[0] == 'shutdown') {
   log_auth($user_cur->sess, "Shutdown session. delegate to room gc the autologout");
@@ -534,7 +534,7 @@ else if ($user->stat == 'table') {
 }
 log_wr("before save data");
 Bin5::save_data($bri);
-log_mop($user->step, 'bin::index_wr.php: after save_data()');
+log_wr($user->step, 'bin::index_wr.php: after save_data()');
 
 Bin5::unlock_data($sem);
 exit;
index 4f06af3..6e3e19d 100644 (file)
@@ -383,7 +383,7 @@ function maincheck($sess, $cur_stat, $cur_subst, $cur_step, &$new_stat, &$new_su
                 $new_step =  $user->step;
             } while (0);
             
-            log_mop($user->step, 'index_rd.php: after ret set');
+            log_rd2($user->step, 'index_rd.php: after ret set');
             
             if ($user->the_end == TRUE) {
                 Room::unlock_data($sem);
@@ -473,7 +473,7 @@ for ($i = 0 ; time() < $endtime ; $i++) {
     echo ' @END@'; 
     log_send("IS_PAGE: ".($is_page_streaming == TRUE ? "TRUE" : "FALSE")."EXT_STEP: ".$ext_step." ENDTIME: [".$endtime."] ".$ret);
     mop_flush();
-    log_mop(0, 'index_rd.php: after mop_flush (begin: '.sprintf("%f", $pre_main).')');
+    log_rd2(0, 'index_rd.php: after mop_flush (begin: '.sprintf("%f", $pre_main).')');
     if ($is_page_streaming) 
         break;
   }
index c1fbcff..5141092 100644 (file)
@@ -100,7 +100,7 @@ if (array_search($_SERVER['REMOTE_ADDR'], $G_black_list) !== FALSE) {
 
 $is_spawn = FALSE;
 
-log_mop(0, 'index_wr.php: COMM: '.xcapemesg($mesg));
+log_wr(0, 'index_wr.php: COMM: '.xcapemesg($mesg));
 log_wr('COMM: '.xcapemesg($mesg));
 
 $curtime = time();
@@ -186,7 +186,7 @@ $argz = explode('|', xcapemesg($mesg));
 
 log_wr('POSTSPLIT: '.$argz[0]);
 
-log_mop($user->step, 'index_wr.php: after get_user()');
+log_wr($user->step, 'index_wr.php: after get_user()');
 
 if ($argz[0] == 'shutdown') {
   log_auth($user->sess, "Shutdown session.");
@@ -670,7 +670,7 @@ else if ($user->stat == 'room') {
 }
 log_wr("before save data");
 Room::save_data($room);
-log_mop($user->step, 'index_wr.php: after save_data()');
+log_wr($user->step, 'index_wr.php: after save_data()');
 
 Room::unlock_data($sem);
 exit;