1 Star 0 Fork 91

陈棋德 / systemd

forked from src-openEuler / systemd 
Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
systemd-change-time-log-level.patch 1.18 KB
AI 代码解读
Copy Edit Raw Blame History
胡宇彪 authored 2023-07-31 10:00 . sync the patch from v249
From 7ca51ff9a4213025070f29c7814bba82984b90e7 Mon Sep 17 00:00:00 2001
From: yefei25 <yefei25@huawei.com>
Date: Tue, 19 Nov 2019 21:49:52 +0800
Subject: [PATCH] systemd: change time log level
Signed-off-by: yefei25 <yefei25@huawei.com>
---
src/core/manager.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/core/manager.c b/src/core/manager.c
index 7b39479..1619f8c 100644
--- a/src/core/manager.c
+++ b/src/core/manager.c
@@ -2937,11 +2937,11 @@ static int manager_dispatch_signal_fd(sd_event_source *source, int fd, uint32_t
static int manager_dispatch_time_change_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata) {
Manager *m = ASSERT_PTR(userdata);
Unit *u;
-
- log_struct(LOG_DEBUG,
- "MESSAGE_ID=" SD_MESSAGE_TIME_CHANGE_STR,
- LOG_MESSAGE("Time has been changed"));
-
+ if (getpid_cached() == 1) {
+ log_struct(LOG_INFO,
+ "MESSAGE_ID=" SD_MESSAGE_TIME_CHANGE_STR,
+ LOG_MESSAGE("Time has been changed"));
+ }
/* Restart the watch */
(void) manager_setup_time_change(m);
--
2.33.0
1
https://gitee.com/dillon_chen/systemd.git
git@gitee.com:dillon_chen/systemd.git
dillon_chen
systemd
systemd
master

Search