Skip to content

Commit

Permalink
Merge pull request #18 from OXIDprojects/druteika-patch-1
Browse files Browse the repository at this point in the history
Fix variable dump in debug message
  • Loading branch information
keywan-ghadami-oxid authored Dec 13, 2018
2 parents 16bd700 + ab1f388 commit 0d94964
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/CommandBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ protected function init()
$aConfigIntersect = array_intersect($this->aConfiguration['excludeFields'], $this->aConfiguration['envFields']);
if (count($aConfigIntersect) > 0) {
$this->getDebugOutput()->writeLn(
"CAUTION: excludeFields and envFields are not disjoint! " . print_r($aConfigIntersect, true);
"CAUTION: excludeFields and envFields are not disjoint! " . print_r($aConfigIntersect, true)
);
}
}
Expand Down

0 comments on commit 0d94964

Please sign in to comment.