| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 287a02c commit a58c98e
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -140,10 +140,11 @@ std::string_view BlobDeserializer<Impl>::ReadStringView(StringLogMode mode) { | |||
| 140 | 140 | Debug("ReadStringView(), length=%zu: ", length); | |
| 141 | 141 | ||
| 142 | 142 | std::string_view result(sink.data() + read_total, length); | |
| 143 | - Debug("%p, read %zu bytes\n", result.data(), result.size()); | ||
| 143 | + Debug("%p, read %zu bytes", result.data(), result.size()); | ||
| 144 | 144 | if (mode == StringLogMode::kAddressAndContent) { | |
| 145 | - Debug("%s", result); | ||
| 145 | + Debug(", content:%s%s", length > 32 ? "\n" : " ", result); | ||
| 146 | 146 | } | |
| 147 | + Debug("\n"); | ||
| 147 | 148 | ||
| 148 | 149 | read_total += length; | |
| 149 | 150 | return result; | |
| Back | FazBrowse Home | New Git URL |
0 commit comments