Skip to content

Commit

Permalink
remove template from console output
Browse files Browse the repository at this point in the history
  • Loading branch information
ibelar committed Jun 5, 2020
1 parent a457659 commit 71e7b4f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions demos/_unit-test/console_run.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
public function test()
{
$this->log('info', 'Console will automatically pick up output from all DebugTrait objects');
$this->debug('debug test');
$this->emergency('emergency {foo}', ['foo' => 'bar']);
$this->alert('alert {foo}', ['foo' => 'bar']);
$this->critical('critical {foo}', ['foo' => 'bar']);
$this->error('error {foo}', ['foo' => 'bar']);
$this->warning('warning {foo}', ['foo' => 'bar']);
$this->notice('notice {foo}', ['foo' => 'bar']);
$this->info('info {foo}', ['foo' => 'bar']);
$this->debug('debug');
$this->emergency('emergency');
$this->alert('alert');
$this->critical('critical');
$this->error('error');
$this->warning('warning');
$this->notice('notice');
$this->info('info');

return 123;
}
Expand Down

0 comments on commit 71e7b4f

Please sign in to comment.