This is an automated email from the ASF dual-hosted git repository.
pnoltes pushed a commit to branch
feature/685-update-container-config-properties-usage
in repository https://gitbox.apache.org/repos/asf/celix.git
The following commit(s) were added to
refs/heads/feature/685-update-container-config-properties-usage by this push:
new 5b4cd3a6b gh-685: Replace sigabbrev_np usage with strsignal
5b4cd3a6b is described below
commit 5b4cd3a6b9375279578dda819563f896107b4b1a
Author: Pepijn Noltes <[email protected]>
AuthorDate: Sun Jun 2 15:02:41 2024 +0200
gh-685: Replace sigabbrev_np usage with strsignal
---
libs/framework/src/celix_launcher.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libs/framework/src/celix_launcher.c
b/libs/framework/src/celix_launcher.c
index e40e320f5..4a8fe95eb 100644
--- a/libs/framework/src/celix_launcher.c
+++ b/libs/framework/src/celix_launcher.c
@@ -379,7 +379,7 @@ void celix_launcher_stopInternal(const int* signal) {
if (signal) {
celix_bundle_context_t* ctx =
celix_framework_getFrameworkContext(fw);
celix_bundleContext_log(
- ctx, CELIX_LOG_LEVEL_INFO, "Stopping Celix framework due to
signal %s", sigabbrev_np(*signal));
+ ctx, CELIX_LOG_LEVEL_INFO, "Stopping Celix framework due to
signal %s", strsignal(*signal));
}
celix_framework_stopBundle(fw, CELIX_FRAMEWORK_BUNDLE_ID);
} else {