reduce verbosity
authorJosé Bollo <jose.bollo@iot.bzh>
Wed, 12 Apr 2017 15:58:38 +0000 (17:58 +0200)
committerJosé Bollo <jose.bollo@iot.bzh>
Wed, 12 Apr 2017 15:58:38 +0000 (17:58 +0200)
Change-Id: I625dd517912461bb55f298a11a5eb37adc92293b
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
src/jobs.c

index 17deb88..8f51cc9 100644 (file)
@@ -325,8 +325,6 @@ static void thread_run(volatile struct thread *me)
        threads = (struct thread*)me;
        current = (struct thread*)me;
 
-       NOTICE("job thread starting %d(/%d) %s", started, allowed, me->upper ? "child" : "parent");
-
        /* loop until stopped */
        me->events = NULL;
        while (!me->stop) {
@@ -375,7 +373,6 @@ static void thread_run(volatile struct thread *me)
                        }
                }
        }
-       NOTICE("job thread stoping %d(/%d) %s", started, allowed, me->upper ? "child" : "parent");
 
        /* unlink the current thread and cleanup */
        prv = &threads;