mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:37:44 +00:00
HexEditor: Don't spam debug output when finding all strings
For each string found we would output it, which was way too much noise :^)
This commit is contained in:
parent
0bfcbf0b0a
commit
8695ae4c50
1 changed files with 1 additions and 3 deletions
|
@ -776,10 +776,8 @@ Vector<Match> HexEditor::find_all_strings(size_t min_length)
|
|||
}
|
||||
builder.append(c);
|
||||
} else {
|
||||
if (builder.length() >= min_length) {
|
||||
dbgln("find_all_strings: relative_offset={} string={}", offset, builder.to_string());
|
||||
if (builder.length() >= min_length)
|
||||
matches.append({ offset, builder.to_string() });
|
||||
}
|
||||
builder.clear();
|
||||
found_string = false;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue