Skip to content

Commit

Permalink
Fix exception is thrown on unknown events
Browse files Browse the repository at this point in the history
Change to log error on unknown event
Fix 403
  • Loading branch information
elkuku committed Aug 18, 2014
1 parent 0709d2f commit ccbd097
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/Application/Command/Get/Project/Events.php
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ protected function processData()
break;

default:
throw new \UnexpectedValueException('Unknown event: ' . $event->event);
$this->logOut(sprintf('ERROR: Unknown Event: %s', $event->event));
continue;
break;
}
Expand Down

0 comments on commit ccbd097

Please sign in to comment.