Skip to content
Snippets Groups Projects
Commit 45576088 authored by Ilya Verbin's avatar Ilya Verbin Committed by Vladimir Davydov
Browse files

log: print build target triplet alongside with the version

This is useful for example for the analysis of performance complaints
from users, when they claim that one version of Tarantool is slower
than another, in fact comparing debug and release builds.

NO_DOC=minor change
NO_TEST=minor change
parent cba4e20a
No related branches found
No related tags found
No related merge requests found
## feature/core
* Now the log produced during `box.cfg{}` contains the build target triplet
(e.g. `Linux-x86_64-RelWithDebInfo`).
......@@ -501,7 +501,8 @@ load_cfg(void)
* after (optional) daemonising to avoid confusing messages with
* different pids
*/
say_info("%s %s", tarantool_package(), tarantool_version());
say_info("%s %s %s", tarantool_package(), tarantool_version(),
BUILD_INFO);
say_info("log level %i", cfg_geti("log_level"));
if (pid_file_handle != NULL) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment