crytic / echidna

Ethereum smart contract fuzzer
GNU Affero General Public License v3.0
2.65k stars 346 forks source link

Emit log message when saving reproducers #1273

Closed samalws-tob closed 1 month ago

samalws-tob commented 1 month ago

Fixes #1179 One problem with this: sometimes this message should be prefaced with a \n and sometimes it shouldn't. Example:

[2024-06-12 14:08:43.07] Saving corpus... Saving reproducer to asdf/coverage/9205690443874393131.txt
Done! (0.042806s)

Should be:

[2024-06-12 14:08:43.07] Saving corpus...
Saving reproducer to asdf/coverage/9205690443874393131.txt
Done! (0.042806s)

Any suggestions for how to do this in a consistent way are appreciated