diff options
| author | Laurent Bercot <ska-skaware@skarnet.org> | 2023-10-10 08:06:46 +0000 |
|---|---|---|
| committer | Laurent Bercot <ska@appnovation.com> | 2023-10-10 08:06:46 +0000 |
| commit | 541325d00c7078d063ea97333d3c9c64d6b6c7b6 (patch) | |
| tree | 86453b9f547359546d74988b04ab33ec10b4000c /src/libtipidee/tipidee_log_answer.c | |
| parent | d9f5cb7a28ee79e299e41d3ce325171f01e1a3d7 (diff) | |
| download | tipidee-541325d00c7078d063ea97333d3c9c64d6b6c7b6.tar.gz | |
Add new logging functions, change method_conv for bsearch
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/libtipidee/tipidee_log_answer.c')
| -rw-r--r-- | src/libtipidee/tipidee_log_answer.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/libtipidee/tipidee_log_answer.c b/src/libtipidee/tipidee_log_answer.c new file mode 100644 index 0000000..beedb61 --- /dev/null +++ b/src/libtipidee/tipidee_log_answer.c @@ -0,0 +1,24 @@ +/* ISC license. */ + +#include <sys/types.h> + +#include <skalibs/uint64.h> +#include <skalibs/types.h> +#include <skalibs/strerr.h> + +#include <tipidee/log.h> + +void tipidee_log_answer (uint32_t v, unsigned int status, off_t size) +{ + char fmtstatus[UINT_FMT] ; + if (!(v & TIPIDEE_LOG_ANSWER)) return ; + fmtstatus[uint_fmt(fmtstatus, status)] = 0 ; + if (size) + { + char fmtsize[UINT64_FMT] ; + fmtsize[uint64_fmt(fmtsize, size)] = 0 ; + strerr_warni4x("answer ", fmtstatus, " size ", fmtsize) ; + } + else + strerr_warni2x("answer ", fmtstatus) ; +} |
