diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-02-09 11:03:47 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-02-09 11:03:47 +0100 |
commit | c3c18722912a39fceac9e8bc59987f3174d0ebef (patch) | |
tree | 5602de2a70537ba037f8eb20f5ccee8e47992d50 | |
parent | b632a46e30e2159573c1decfbcbf13cb04fc6fe4 (diff) | |
download | sink-c3c18722912a39fceac9e8bc59987f3174d0ebef.tar.gz sink-c3c18722912a39fceac9e8bc59987f3174d0ebef.zip |
Print value in inspection
-rw-r--r-- | sinksh/syntax_modules/sink_inspect.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sinksh/syntax_modules/sink_inspect.cpp b/sinksh/syntax_modules/sink_inspect.cpp index 175bb9d..457ad12 100644 --- a/sinksh/syntax_modules/sink_inspect.cpp +++ b/sinksh/syntax_modules/sink_inspect.cpp | |||
@@ -86,7 +86,7 @@ bool inspect(const QStringList &args, State &state) | |||
86 | state.printLine("Key: " + key + " Operation: " + QString::number(metadata->operation())); | 86 | state.printLine("Key: " + key + " Operation: " + QString::number(metadata->operation())); |
87 | } | 87 | } |
88 | } else { | 88 | } else { |
89 | state.printLine("Key: " + key); | 89 | state.printLine("Key: " + key + " Value: " + QString::fromUtf8(data)); |
90 | } | 90 | } |
91 | return true; | 91 | return true; |
92 | }, | 92 | }, |