ajwillia-ms pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=7b4441e2b8d9d32d0d362560a64a6dcc716ee544

commit 7b4441e2b8d9d32d0d362560a64a6dcc716ee544
Author: Andy Williams <[email protected]>
Date:   Fri Dec 22 14:48:28 2017 +0000

    ecore: Reduce the number of lines in our error log
    
    And align for readability
---
 src/lib/ecore/ecore.c | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/src/lib/ecore/ecore.c b/src/lib/ecore/ecore.c
index 85040f532d..deba63533f 100644
--- a/src/lib/ecore/ecore.c
+++ b/src/lib/ecore/ecore.c
@@ -788,17 +788,15 @@ _ecore_magic_fail(const void *d,
                   Ecore_Magic req_m,
                   const char *fname EINA_UNUSED)
 {
-   ERR("\n"
-       "*** ECORE ERROR: Ecore Magic Check Failed!!!\n"
-       "*** IN FUNCTION: %s()", fname);
+   ERR("*** ECORE ERROR: Ecore Magic Check Failed!!! in: %s()", fname);
    if (!d)
-     ERR("  Input handle pointer is NULL!");
+     ERR("    Input handle pointer is NULL!");
    else if (m == ECORE_MAGIC_NONE)
-     ERR("  Input handle has already been freed!");
+     ERR("    Input handle has already been freed!");
    else if (m != req_m)
-     ERR("  Input handle is wrong type\n"
-         "    Expected: %08x - %s\n"
-         "    Supplied: %08x - %s",
+     ERR("    Input handle is wrong type\n"
+         "      Expected: %08x - %s\n"
+         "      Supplied: %08x - %s",
          (unsigned int)req_m, _ecore_magic_string_get(req_m),
          (unsigned int)m, _ecore_magic_string_get(m));
 

-- 


Reply via email to