process: Change log of Removing/Created process 49/319149/2 accepted/tizen/7.0/unified/20241017.161234
authorUnsung Lee <unsung.lee@samsung.com>
Wed, 16 Oct 2024 07:16:10 +0000 (16:16 +0900)
committerUnsung Lee <unsung.lee@samsung.com>
Wed, 16 Oct 2024 07:17:23 +0000 (16:17 +0900)
Change log from Removing/Created process to Stop/Start process monitoring.
Since it does not related to real process removing and creating.

Change-Id: I9e08a7a06a8a31a5ddb8d9b09e77729164f98d34
Signed-off-by: Unsung Lee <unsung.lee@samsung.com>
src/process.c

index 392ec458eea93a199867761ee2198879519ea83a..3d92e0b018b215e40826313c373500a49219fed7 100644 (file)
@@ -123,7 +123,7 @@ int process_create_info(int pid, int ppid, struct proc_info **process)
     process_ref(p);
 
     if (p->monitor)
-        _I_PROC(p, "Created process");
+        _I_PROC(p, "Start process monitoring");
 
     return 0;
 }
@@ -573,7 +573,7 @@ void process_unref(struct proc_info *process) {
     process->ref_count--;
     if (process->ref_count <= 0) {
         if (process->monitor)
-            _I_PROC(process, "Removing process");
+            _I_PROC(process, "Stop process monitoring");
         process_cleanup(process);
     }
 }