From c3c18722912a39fceac9e8bc59987f3174d0ebef Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Thu, 9 Feb 2017 11:03:47 +0100 Subject: Print value in inspection --- sinksh/syntax_modules/sink_inspect.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) state.printLine("Key: " + key + " Operation: " + QString::number(metadata->operation())); } } else { - state.printLine("Key: " + key); + state.printLine("Key: " + key + " Value: " + QString::fromUtf8(data)); } return true; }, -- cgit v1.2.3