diff options
-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 d1f9791..b271b4f 100644 --- a/sinksh/syntax_modules/sink_inspect.cpp +++ b/sinksh/syntax_modules/sink_inspect.cpp | |||
@@ -155,7 +155,7 @@ bool inspect(const QStringList &args, State &state) | |||
155 | state.printLine("Key: " + key | 155 | state.printLine("Key: " + key |
156 | + " Operation: " + QString::number(metadata->operation()) | 156 | + " Operation: " + QString::number(metadata->operation()) |
157 | + " Replay: " + (metadata->replayToSource() ? "true" : "false") | 157 | + " Replay: " + (metadata->replayToSource() ? "true" : "false") |
158 | + ((metadata->modifiedProperties() && metadata->modifiedProperties()->size() != 0) ? (" Changeset: " + Sink::BufferUtils::fromVector(*metadata->modifiedProperties()).join(",")) : "")); | 158 | + ((metadata->modifiedProperties() && metadata->modifiedProperties()->size() != 0) ? (" [" + Sink::BufferUtils::fromVector(*metadata->modifiedProperties()).join(", ")) + "]": "")); |
159 | } | 159 | } |
160 | } else { | 160 | } else { |
161 | state.printLine("Key: " + key + " Value: " + QString::fromUtf8(data)); | 161 | state.printLine("Key: " + key + " Value: " + QString::fromUtf8(data)); |