Skip to content
Snippets Groups Projects
Commit 2cc3cb05 authored by Dmitry Simonenko's avatar Dmitry Simonenko
Browse files

Merge branch 'lua-plus-dict' of github.com:mailru/tarantool into lua-plus-dict

parents fe4cb946 5bb2ecdc
No related merge requests found
......@@ -117,12 +117,10 @@ box.info()
recovery_lag: 0
uptime: <uptime>
build:
flags: ' -fno-omit-frame-pointer -fno-stack-protector -fexceptions -funwind-tables
-std=c11 -Wall -Wextra -Wno-sign-compare -Wno-strict-aliasing -Werror -pthread'
target: Linux-i686-Debug
compiler: /usr/bin/gcc /usr/bin/c++
options: cmake . -DCMAKE_INSTALL_PREFIX=/usr/local -DENABLE_STATIC=OFF -DENABLE_TRACE=ON
-DENABLE_BACKTRACE=ON -DENABLE_CLIENT=ON
flags: <flags>
target: <target>
compiler: <compiler>
options: <options>
logger_pid: <pid>
config: tarantool.cfg
...
......@@ -20,7 +20,12 @@ sys.stdout.push_filter("(\d)\.\d\.\d(-\d+-\w+)?", "\\1.minor.patch-<rev>-<commit
sys.stdout.push_filter("pid: \d+", "pid: <pid>")
sys.stdout.push_filter("logger_pid: \d+", "pid: <pid>")
sys.stdout.push_filter("uptime: \d+", "uptime: <uptime>")
sys.stdout.push_filter("uptime: \d+", "uptime: <uptime>")
sys.stdout.push_filter("flags: .*", "flags: <flags>")
sys.stdout.push_filter("build: .*", "build: <build>")
sys.stdout.push_filter("options: .*", "options: <options>")
sys.stdout.push_filter("target: .*", "target: <target>")
sys.stdout.push_filter("compiler: .*", "compiler: <compiler>")
sys.stdout.push_filter("^ [^:]+$", "")
sys.stdout.push_filter("(/\S+)+/tarantool", "tarantool")
admin("box.info()")
sys.stdout.clear_all_filters()
......
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