|
@@ 237-241 (lines=5) @@
|
| 234 |
|
if ( $functionname === 'close' ) { |
| 235 |
|
$message = "Profile section ended by close(): {$ofname}"; |
| 236 |
|
$this->debugGroup( 'profileerror', $message ); |
| 237 |
|
if ( $this->collateOnly ) { |
| 238 |
|
$this->collated[$message] = $this->errorEntry; |
| 239 |
|
} else { |
| 240 |
|
$this->stack[] = [ $message, 0, 0.0, 0.0, 0, 0.0, 0.0, 0 ]; |
| 241 |
|
} |
| 242 |
|
$functionname = $ofname; |
| 243 |
|
} elseif ( $ofname !== $functionname ) { |
| 244 |
|
$message = "Profiling error: in({$ofname}), out($functionname)"; |
|
@@ 246-250 (lines=5) @@
|
| 243 |
|
} elseif ( $ofname !== $functionname ) { |
| 244 |
|
$message = "Profiling error: in({$ofname}), out($functionname)"; |
| 245 |
|
$this->debugGroup( 'profileerror', $message ); |
| 246 |
|
if ( $this->collateOnly ) { |
| 247 |
|
$this->collated[$message] = $this->errorEntry; |
| 248 |
|
} else { |
| 249 |
|
$this->stack[] = [ $message, 0, 0.0, 0.0, 0, 0.0, 0.0, 0 ]; |
| 250 |
|
} |
| 251 |
|
} |
| 252 |
|
|
| 253 |
|
$realTime = $this->getTime( 'wall' ); |