[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Minios-devel] [UNIKRAFT PATCH] lib/uklock: Debug level for semaphore messages
Use debug prints also for semaphore initialization message. This is done in order to be inline with other messages produced by libuklock. Signed-off-by: Simon Kuenzer <simon.kuenzer@xxxxxxxxx> --- lib/uklock/semaphore.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/uklock/semaphore.c b/lib/uklock/semaphore.c index 5ed54023..c9747100 100644 --- a/lib/uklock/semaphore.c +++ b/lib/uklock/semaphore.c @@ -5,6 +5,6 @@ void uk_semaphore_init(struct uk_semaphore *s, long count) s->count = count; uk_waitq_init(&s->wait); - uk_pr_info("Initialized semaphore %p with %ld\n", - s, s->count); + uk_pr_debug("Initialized semaphore %p with %ld\n", + s, s->count); } -- 2.17.2 (Apple Git-113) _______________________________________________ Minios-devel mailing list Minios-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/minios-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |