This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch fix-wl-background
in repository enlightenment.

View the commit online.

commit 2d24cc973c6eea057e3a3f011f544ee5eb07035b
Author: Carsten Haitzler <[email protected]>
AuthorDate: Thu Aug 6 14:18:41 2026 +0100

    shot uploader - fix stdout comms to be stdout again in raw fmt
    
    my logger changes broke shot upload status. fix.
---
 src/modules/shot/upload.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/modules/shot/upload.c b/src/modules/shot/upload.c
index cc19d5b02..c1e5da2ca 100644
--- a/src/modules/shot/upload.c
+++ b/src/modules/shot/upload.c
@@ -18,7 +18,7 @@ _upload_data_cb(void *data EINA_UNUSED, int ev_type EINA_UNUSED, void *event)
 
         memcpy(txt, ev->data, ev->size);
         txt[ev->size] = 0;
-        L("R %s", txt);
+        printf("R %s\n", txt);
         fflush(stdout);
      }
    return EINA_FALSE;
@@ -35,7 +35,7 @@ _upload_progress_cb(void *data EINA_UNUSED, int ev_type EINA_UNUSED, void *event
    current = ev->up.now;
    if (total > 0)
      {
-        L("U %i", (int)((current * 1000) / total));
+        printf("U %i\n", (int)((current * 1000) / total));
         fflush(stdout);
      }
    return EINA_FALSE;
@@ -47,8 +47,8 @@ _upload_complete_cb(void *data EINA_UNUSED, int ev_type EINA_UNUSED, void *event
    Ecore_Con_Event_Url_Complete *ev = event;
 
    if (ev->url_con != url_up) return EINA_TRUE;
-   if (ev->status != 200) L("E %i", ev->status);
-   else L("O");
+   if (ev->status != 200) printf("E %i\n", ev->status);
+   else printf("O\n");
    fflush(stdout);
    elm_exit();
    return EINA_FALSE;

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to