@@ 63-77 (lines=15) @@ | ||
60 | * @param array $info |
|
61 | * @param bool $display_request |
|
62 | */ |
|
63 | protected function log( $class = '', $func = '', $line = '', EE_Transaction $transaction, $info = array(), $display_request = false ) { |
|
64 | if ( WP_DEBUG && false ) { |
|
65 | if ( $transaction instanceof EE_Transaction ) { |
|
66 | // don't serialize objects |
|
67 | $info = EEH_Debug_Tools::strip_objects( $info ); |
|
68 | if ( $transaction->ID() ) { |
|
69 | $info[ 'TXN_status' ] = $transaction->status_ID(); |
|
70 | $info[ 'TXN_reg_steps' ] = $transaction->reg_steps(); |
|
71 | $index = 'EE_Transaction: ' . $transaction->ID(); |
|
72 | EEH_Debug_Tools::log( $class, $func, $line, $info, $display_request, $index ); |
|
73 | } |
|
74 | } |
|
75 | } |
|
76 | ||
77 | } |
|
78 | ||
79 | ||
80 |
@@ 979-993 (lines=15) @@ | ||
976 | * @param array $info |
|
977 | * @param bool $display_request |
|
978 | */ |
|
979 | protected static function log( $class = '', $func = '', $line = '', EE_Transaction $transaction, $info = array(), $display_request = false ) { |
|
980 | if ( WP_DEBUG && false ) { |
|
981 | if ( $transaction instanceof EE_Transaction ) { |
|
982 | // don't serialize objects |
|
983 | $info = EEH_Debug_Tools::strip_objects( $info ); |
|
984 | $info['TXN_status'] = $transaction->status_ID(); |
|
985 | $info['TXN_reg_steps'] = $transaction->reg_steps(); |
|
986 | if ( $transaction->ID() ) { |
|
987 | $index = 'EE_Transaction: ' . $transaction->ID(); |
|
988 | EEH_Debug_Tools::log( $class, $func, $line, $info, $display_request, $index ); |
|
989 | } |
|
990 | } |
|
991 | } |
|
992 | ||
993 | } |
|
994 | ||
995 | } |
|
996 | // End of file EED_Messages.module.php |