ecore: Reduce the number of lines in our error log
authorAndy Williams <andy@andywilliams.me>
Fri, 22 Dec 2017 14:48:28 +0000 (14:48 +0000)
committerWonki Kim <wonki_.kim@samsung.com>
Wed, 10 Jan 2018 11:08:13 +0000 (20:08 +0900)
And align for readability

src/lib/ecore/ecore.c

index 85040f5..deba635 100644 (file)
@@ -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));