Close #69 update error level when user can't register

This commit is contained in:
Antonio Ramirez
2017-10-15 14:26:28 +02:00
parent 359940f4d1
commit 803a8ff4f0
2 changed files with 2 additions and 1 deletions

View File

@ -78,7 +78,7 @@ class UserRegisterService implements ServiceInterface
return true;
} catch (Exception $e) {
$transaction->rollBack();
$this->logger->log($e->getMessage(), Logger::LEVEL_WARNING);
$this->logger->log($e->getMessage(), Logger::LEVEL_ERROR);
return false;
}