X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=src%2Ffd-cache%2Ffd-cache.c;h=cb1472b9a84347ebfcffec000dddd7b0c8f772d0;hb=3f7d4d90b0456de9d34fac337350818ef06163bd;hp=6d62518997665a743ce9dcf6cad716e876964400;hpb=44ced4ff8e8b5e46ef03f3aec737fca5ca2c7003;p=babeltrace.git diff --git a/src/fd-cache/fd-cache.c b/src/fd-cache/fd-cache.c index 6d625189..cb1472b9 100644 --- a/src/fd-cache/fd-cache.c +++ b/src/fd-cache/fd-cache.c @@ -169,13 +169,13 @@ struct bt_fd_cache_handle *bt_fd_cache_get_handle(struct bt_fd_cache *fdc, fd_internal = g_new0(struct fd_handle_internal, 1); if (!fd_internal) { - BT_LOGE("Failed to allocate fd internal handle"); + BT_LOGE_STR("Failed to allocate internal FD handle."); goto error; } file_key = g_new0(struct file_key, 1); if (!fd_internal) { - BT_LOGE("Failed to allocate file key"); + BT_LOGE_STR("Failed to allocate file key."); goto error; } @@ -233,7 +233,7 @@ void bt_fd_cache_put_handle(struct bt_fd_cache *fdc, close_ret = close(fd_internal->fd_handle.fd); if (close_ret == -1) { - BT_LOGW_ERRNO("Failed to close file descriptor", + BT_LOGE_ERRNO("Failed to close file descriptor", ": fd=%d", fd_internal->fd_handle.fd); } ret = g_hash_table_remove(fdc->cache, fd_internal->key);