debug: streaming, simplify other logs

This commit is contained in:
Alex Gleason
2023-12-27 20:39:38 -06:00
parent 4e01e8e626
commit 7b9baef165
3 changed files with 6 additions and 3 deletions

View File

@@ -48,7 +48,7 @@ function lookupNip05Cached(value: string): Promise<string | null> {
const cached = nip05Cache.get(value);
if (cached !== undefined) return cached;
debug(`Looking up NIP-05 for ${value}`);
debug(`Lookup ${value}`);
const result = lookup(value);
nip05Cache.set(value, result);