Closed jtesta closed 4 years ago
Very usefull feature! Thanks for adding that. Everything looks good. Could you also please add grepable parameter description in README.md, so everyone can see on github that this functionality is now offered by drltrace.
Done!
The default format isn't easy to grep through. Functions are split up on multiple lines like this:
Notice that if the user wants to find all calls to
CreateFileW
withC:\Windows\
included, grep simply won't work. With this new-grepable
option, however, the function and arguments are outputted on the same line like this:Now the user can do
grep CreateFileW logfile.log | grep C:\\Windows