Skip to content

Commit

Permalink
Make symbolic function error message more verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Hennenfent committed Jul 18, 2020
1 parent bec1cf8 commit bd3e90c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manticore/platforms/evm.py
Expand Up @@ -2493,7 +2493,7 @@ def symbolic_function(self, func, data):

return result[0]
except Exception as e:
logger.info("Error! %r", e)
logger.error("Error in symbolic function: %r", e)
self._publish("will_solve", self.constraints, data, "get_value")
data_c = SelectedSolver.instance().get_value(self.constraints, data)
self._publish("did_solve", self.constraints, data, "get_value", data_c)
Expand Down

0 comments on commit bd3e90c

Please sign in to comment.