mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 08:47:34 +00:00
LookupServer: Remove debug spam about /etc/hosts
This commit is contained in:
parent
3a4da5aa05
commit
7e97e1c5d9
1 changed files with 0 additions and 4 deletions
|
@ -162,12 +162,8 @@ int main(int argc, char** argv)
|
||||||
|
|
||||||
Vector<String> responses;
|
Vector<String> responses;
|
||||||
|
|
||||||
for (auto& key : dns_custom_hostnames.keys()) {
|
|
||||||
dbgprintf("Known hostname: '%s'\n", key.characters());
|
|
||||||
}
|
|
||||||
if (auto known_host = dns_custom_hostnames.get(hostname)) {
|
if (auto known_host = dns_custom_hostnames.get(hostname)) {
|
||||||
responses.append(known_host.value());
|
responses.append(known_host.value());
|
||||||
dbg() << "LookupServer: Found preconfigured host (from /etc/hosts): " << known_host.value();
|
|
||||||
} else if (!hostname.is_empty()) {
|
} else if (!hostname.is_empty()) {
|
||||||
bool did_timeout;
|
bool did_timeout;
|
||||||
int retries = 3;
|
int retries = 3;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue