Skip to content

Commit

Permalink
Fixed log method. (#771)
Browse files Browse the repository at this point in the history
Added missing exception argument to the log method.
  • Loading branch information
siad007 authored and mrook committed Oct 19, 2017
1 parent f05eba5 commit 0829617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/phing/tasks/ext/HttpGetTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ public function setQuiet($v)
public function log($msg, $msgLevel = Project::MSG_INFO, Exception $t = null)
{
if (!$this->quiet || $msgLevel <= Project::MSG_ERR) {
parent::log($msg, $msgLevel);
parent::log($msg, $msgLevel, $t);
}
}
}

0 comments on commit 0829617

Please sign in to comment.