Skip to content
Snippets Groups Projects
Commit fc2b00f6 authored by Marek Vavruša's avatar Marek Vavruša
Browse files

log: cleanup

parent 655615fa
Branches
Tags
No related merge requests found
......@@ -95,7 +95,7 @@ int main(int argc, char **argv)
uv_udp_init(loop, &udp_sock);
ret = uv_udp_bind(&udp_sock, (struct sockaddr *)&addr, 0);
if (ret == 0) {
fprintf(stdout, "[system] listening on '%s'\n", addr_str);
printf("[system] listening on '%s'\n", addr_str);
} else {
fprintf(stderr, "[system] failed to bind to '%s'\n", addr_str);
return EXIT_FAILURE;
......
......@@ -72,7 +72,7 @@ static int dbase_open(struct kr_cache *cache, const char *handle)
return ret;
}
DEBUG_MSG("OPEN '%s'\n", handle);
DEBUG_MSG("open '%s'\n", handle);
return 0;
}
......@@ -80,7 +80,7 @@ static void dbase_close(struct kr_cache *cache)
{
mdb_close(cache->env, cache->dbi);
mdb_env_close(cache->env);
DEBUG_MSG("CLOSE\n");
DEBUG_MSG("close\n");
}
/* data access */
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment