From: Jay Freeman (saurik) Date: Wed, 18 Nov 2015 07:48:28 +0000 (-0800) Subject: Put the filename in _trace to make it more useful. X-Git-Tag: v0.9.590~310 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/a2ab0fd327b427d1f537cb7bc79de985fae3a0f5 Put the filename in _trace to make it more useful. --- diff --git a/Exception.hpp b/Exception.hpp index 0282f0f..ff63b8c 100644 --- a/Exception.hpp +++ b/Exception.hpp @@ -78,7 +78,7 @@ while (false) _value; }) #define _trace() do { \ - fprintf(stderr, "_trace():%u\n", __LINE__); \ + fprintf(stderr, "_trace(%s:%u)\n", __FILE__, __LINE__); \ } while (false) static _finline bool CYContains(int value, size_t many, const int *okay) {