From: Yu Watanabe Date: Wed, 5 May 2021 18:47:58 +0000 (+0900) Subject: test: drop log_trace() in test-random-util X-Git-Tag: v249-rc1~292 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3d396b2837445cf2fbe00c12aed2d9967d9e9d23;p=thirdparty%2Fsystemd.git test: drop log_trace() in test-random-util It provides almost no inoformation. Moreover, it massively increases logs, and firefox cannot show the results of Ubuntu CIs due to this. --- diff --git a/src/test/test-random-util.c b/src/test/test-random-util.c index 44103efa62a..42d7a746da6 100644 --- a/src/test/test-random-util.c +++ b/src/test/test-random-util.c @@ -68,7 +68,6 @@ static void test_random_u64_range_one(unsigned mod) { x = random_u64_range(mod); - log_trace("%05u: %"PRIu64, i, x); count[x]++; max = MAX(max, count[x]); }