bugreport: Ensure DLog tag is always specified 13/254813/1
authorKarol Lewandowski <k.lewandowsk@samsung.com>
Tue, 9 Mar 2021 11:47:59 +0000 (12:47 +0100)
committerKarol Lewandowski <k.lewandowsk@samsung.com>
Tue, 9 Mar 2021 12:08:04 +0000 (13:08 +0100)
Change-Id: I4ccde9340c18e9589fdfdc03ba0937c2632ff4bf

src/bugreport-service/bugreport-service.c
src/bugreport-service/bugreport-service.h [new file with mode: 0644]
src/bugreport-service/diagnostics/diagnostics.c

index f73947d..36c9a59 100644 (file)
@@ -27,6 +27,8 @@
 #include <sys/wait.h>
 #include <unistd.h>
 
+#include "bugreport-service.h"
+
 #include "crash-manager/crash-manager.h"
 #include "libbugreport.h"
 #include "shared/log.h"
diff --git a/src/bugreport-service/bugreport-service.h b/src/bugreport-service/bugreport-service.h
new file mode 100644 (file)
index 0000000..2c7a29e
--- /dev/null
@@ -0,0 +1,19 @@
+/*
+ * Copyright (c) 2021 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+#pragma once
+
+#define LOG_TAG "BUGREPORT-SERVICE"
+
index f5dc1a1..e66394f 100644 (file)
@@ -28,9 +28,9 @@
 #include <zip.h>
 #include <errno.h>
 #include <dirent.h>
-#include "diagnostics/diagnostics.h"
 
-#define LOG_TAG "CRASH_MANAGER"
+#include "bugreport-service.h"
+#include "diagnostics/diagnostics.h"
 
 #include "defs.h"
 #include "shared/log.h"