diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-12-07 02:18:27 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-12-07 02:18:27 +0200 |
commit | 2bca2705e9c83010bfafc0e6debfab10f867c06d (patch) | |
tree | 9a41980c3cdb3b16b586ec80f7daf3fd23225ef4 /src/tests/test_aklog.c | |
parent | 5402530100772eb3a8db649a52ee454145ae54dc (diff) | |
download | arching-kaos-tools-2bca2705e9c83010bfafc0e6debfab10f867c06d.tar.gz arching-kaos-tools-2bca2705e9c83010bfafc0e6debfab10f867c06d.tar.bz2 arching-kaos-tools-2bca2705e9c83010bfafc0e6debfab10f867c06d.zip |
Provide custom installer for NodeJS
Diffstat (limited to 'src/tests/test_aklog.c')
-rw-r--r-- | src/tests/test_aklog.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/tests/test_aklog.c b/src/tests/test_aklog.c index 934124d..a2408a9 100644 --- a/src/tests/test_aklog.c +++ b/src/tests/test_aklog.c @@ -22,32 +22,32 @@ void test_rotate() void test_log_message() { - ak_log_message("TEST", "TEST", "test message info"); + ak_log_message(__func__, "TEST", "test message info"); } void test_exit() { - ak_log_exit("TEST", "test message info"); + ak_log_exit(__func__, "test message info"); } void test_warning() { - ak_log_warning("TEST", "test message info"); + ak_log_warning(__func__, "test message info"); } void test_debug() { - ak_log_debug("TEST", "test message info"); + ak_log_debug(__func__, "test message info"); } void test_error() { - ak_log_error("TEST", "test message info"); + ak_log_error(__func__, "test message info"); } void test_info() { - ak_log_info("TEST", "test message info"); + ak_log_info(__func__, "test message info"); } int main (void) |