From d8d474dee1d052fe05a334eac11d5065304e5885 Mon Sep 17 00:00:00 2001 From: Lumia1108 Date: Wed, 16 Sep 2026 07:18:47 +0900 Subject: [PATCH] Lower suppressed vocabulary log level Log intentionally suppressed fetch and parsing failures at debug level so they do not produce application error events. https://github.com/fedify-dev/fedify/issues/933 Assisted-by: Codex:gpt-5.6 --- CHANGES.md | 8 + .../vocab-tools/suppressed-error-log-level.md | 3 + .../src/__snapshots__/class.test.ts.deno.snap | 584 +++++++++--------- .../src/__snapshots__/class.test.ts.node.snap | 584 +++++++++--------- .../src/__snapshots__/class.test.ts.snap | 584 +++++++++--------- packages/vocab-tools/src/property.ts | 4 +- 6 files changed, 889 insertions(+), 878 deletions(-) create mode 100644 changes.d/vocab-tools/suppressed-error-log-level.md diff --git a/CHANGES.md b/CHANGES.md index c98fff2b9..b517c1ad7 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -423,6 +423,14 @@ To be released. [#924]: https://github.com/fedify-dev/fedify/pull/924 [#935]: https://github.com/fedify-dev/fedify/pull/935 +### @fedify/vocab-tools + + - Changed suppressed vocabulary fetch and parsing failures to log at the + debug level so that intentionally handled failures are not reported as + application errors. [[#933] by Lumia1108\] + +[#933]: https://github.com/fedify-dev/fedify/issues/933 + Version 2.3.7 ------------- diff --git a/changes.d/vocab-tools/suppressed-error-log-level.md b/changes.d/vocab-tools/suppressed-error-log-level.md new file mode 100644 index 000000000..b54d73335 --- /dev/null +++ b/changes.d/vocab-tools/suppressed-error-log-level.md @@ -0,0 +1,3 @@ + - Changed suppressed vocabulary fetch and parsing failures to log at the + debug level so that intentionally handled failures are not reported as + application errors. [[#933] by Lumia1108] diff --git a/packages/vocab-tools/src/__snapshots__/class.test.ts.deno.snap b/packages/vocab-tools/src/__snapshots__/class.test.ts.deno.snap index 0f3c88262..64188a45c 100644 --- a/packages/vocab-tools/src/__snapshots__/class.test.ts.deno.snap +++ b/packages/vocab-tools/src/__snapshots__/class.test.ts.deno.snap @@ -2207,7 +2207,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -2249,7 +2249,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -2456,7 +2456,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -2498,7 +2498,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -2830,7 +2830,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -2872,7 +2872,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -3195,7 +3195,7 @@ get contents(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -3237,7 +3237,7 @@ get contents(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -3481,7 +3481,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -3523,7 +3523,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -3719,7 +3719,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -3761,7 +3761,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -4078,7 +4078,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -4120,7 +4120,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -4437,7 +4437,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -4479,7 +4479,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -4782,7 +4782,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -4824,7 +4824,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -5127,7 +5127,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -5169,7 +5169,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -5483,7 +5483,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -5525,7 +5525,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -5711,7 +5711,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -5753,7 +5753,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -5945,7 +5945,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -5987,7 +5987,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -6179,7 +6179,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -6221,7 +6221,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -6447,7 +6447,7 @@ get summaries(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -6489,7 +6489,7 @@ get summaries(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -6722,7 +6722,7 @@ get urls(): ((URL | Link))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -6764,7 +6764,7 @@ get urls(): ((URL | Link))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -7058,7 +7058,7 @@ get urls(): ((URL | Link))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -7100,7 +7100,7 @@ get urls(): ((URL | Link))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -7394,7 +7394,7 @@ get urls(): ((URL | Link))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -7436,7 +7436,7 @@ get urls(): ((URL | Link))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -7730,7 +7730,7 @@ get urls(): ((URL | Link))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -7772,7 +7772,7 @@ get urls(): ((URL | Link))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -8130,7 +8130,7 @@ get urls(): ((URL | Link))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -8172,7 +8172,7 @@ get urls(): ((URL | Link))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -8503,7 +8503,7 @@ get urls(): ((URL | Link))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -8545,7 +8545,7 @@ get urls(): ((URL | Link))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -8731,7 +8731,7 @@ get urls(): ((URL | Link))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -8773,7 +8773,7 @@ get urls(): ((URL | Link))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -8959,7 +8959,7 @@ get urls(): ((URL | Link))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -9001,7 +9001,7 @@ get urls(): ((URL | Link))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -14205,7 +14205,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -14247,7 +14247,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -14457,7 +14457,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -14499,7 +14499,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -15898,7 +15898,7 @@ instruments?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -15940,7 +15940,7 @@ instruments?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -16272,7 +16272,7 @@ instruments?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -16314,7 +16314,7 @@ instruments?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -16610,7 +16610,7 @@ instruments?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -16652,7 +16652,7 @@ instruments?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -16954,7 +16954,7 @@ instruments?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -16996,7 +16996,7 @@ instruments?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -17292,7 +17292,7 @@ instruments?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -17334,7 +17334,7 @@ instruments?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -17632,7 +17632,7 @@ instruments?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -17674,7 +17674,7 @@ instruments?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -20832,7 +20832,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -20874,7 +20874,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -21060,7 +21060,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -21102,7 +21102,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -24119,7 +24119,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -24161,7 +24161,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -24347,7 +24347,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -24389,7 +24389,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -25613,7 +25613,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -25655,7 +25655,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -25841,7 +25841,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -25883,7 +25883,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -27107,7 +27107,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -27149,7 +27149,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -27334,7 +27334,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -27376,7 +27376,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -28596,7 +28596,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -28638,7 +28638,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -28822,7 +28822,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -28864,7 +28864,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -30427,7 +30427,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -30469,7 +30469,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -30655,7 +30655,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -30697,7 +30697,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -30883,7 +30883,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -30925,7 +30925,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -31111,7 +31111,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -31153,7 +31153,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -31350,7 +31350,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -31392,7 +31392,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -31577,7 +31577,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -31619,7 +31619,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -31804,7 +31804,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -31846,7 +31846,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -32031,7 +32031,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -32073,7 +32073,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -32258,7 +32258,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -32300,7 +32300,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -32485,7 +32485,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -32527,7 +32527,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -32712,7 +32712,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -32754,7 +32754,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -32939,7 +32939,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -32981,7 +32981,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -34922,7 +34922,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -34964,7 +34964,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -36368,7 +36368,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -36410,7 +36410,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -36594,7 +36594,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -36636,7 +36636,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -38529,7 +38529,7 @@ cryptosuite?: \\"eddsa-jcs-2022\\" | null;verificationMethod?: Multikey | URL | }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -38571,7 +38571,7 @@ cryptosuite?: \\"eddsa-jcs-2022\\" | null;verificationMethod?: Multikey | URL | return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -39618,7 +39618,7 @@ owner?: Application | Group | Organization | Person | Service | URL | null;publi }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -39660,7 +39660,7 @@ owner?: Application | Group | Organization | Person | Service | URL | null;publi return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -40596,7 +40596,7 @@ controller?: Application | Group | Organization | Person | Service | URL | null; }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -40638,7 +40638,7 @@ controller?: Application | Group | Organization | Person | Service | URL | null; return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -46988,7 +46988,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -47030,7 +47030,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -47320,7 +47320,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -47362,7 +47362,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -47706,7 +47706,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -47748,7 +47748,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -47954,7 +47954,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -47996,7 +47996,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -48199,7 +48199,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -48241,7 +48241,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -48430,7 +48430,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -48472,7 +48472,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -48664,7 +48664,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -48706,7 +48706,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -48896,7 +48896,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -48938,7 +48938,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -49126,7 +49126,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -49168,7 +49168,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -49356,7 +49356,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -49398,7 +49398,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -49583,7 +49583,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -49625,7 +49625,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -49887,7 +49887,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -49929,7 +49929,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -50149,7 +50149,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -50191,7 +50191,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -50525,7 +50525,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -50567,7 +50567,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -54550,7 +54550,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -54592,7 +54592,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -54802,7 +54802,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -54844,7 +54844,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -57749,7 +57749,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -57791,7 +57791,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -57977,7 +57977,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -58019,7 +58019,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -58203,7 +58203,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -58245,7 +58245,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -63766,7 +63766,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -63808,7 +63808,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -64098,7 +64098,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -64140,7 +64140,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -64484,7 +64484,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -64526,7 +64526,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -64732,7 +64732,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -64774,7 +64774,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -64977,7 +64977,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -65019,7 +65019,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -65208,7 +65208,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -65250,7 +65250,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -65442,7 +65442,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -65484,7 +65484,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -65674,7 +65674,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -65716,7 +65716,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -65904,7 +65904,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -65946,7 +65946,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -66134,7 +66134,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -66176,7 +66176,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -66361,7 +66361,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -66403,7 +66403,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -66665,7 +66665,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -66707,7 +66707,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -66927,7 +66927,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -66969,7 +66969,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -67303,7 +67303,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -67345,7 +67345,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -71027,7 +71027,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -71069,7 +71069,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -76291,7 +76291,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -76333,7 +76333,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -76543,7 +76543,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -76585,7 +76585,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -77535,7 +77535,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -77577,7 +77577,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -79407,7 +79407,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -79449,7 +79449,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -79739,7 +79739,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -79781,7 +79781,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -80125,7 +80125,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -80167,7 +80167,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -80373,7 +80373,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -80415,7 +80415,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -80618,7 +80618,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -80660,7 +80660,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -80849,7 +80849,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -80891,7 +80891,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -81083,7 +81083,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -81125,7 +81125,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -81315,7 +81315,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -81357,7 +81357,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -81545,7 +81545,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -81587,7 +81587,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -81775,7 +81775,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -81817,7 +81817,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -82002,7 +82002,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -82044,7 +82044,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -82306,7 +82306,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -82348,7 +82348,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -82568,7 +82568,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -82610,7 +82610,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -82944,7 +82944,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -82986,7 +82986,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -87529,7 +87529,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -87571,7 +87571,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -87861,7 +87861,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -87903,7 +87903,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -88247,7 +88247,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -88289,7 +88289,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -88495,7 +88495,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -88537,7 +88537,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -88740,7 +88740,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -88782,7 +88782,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -88971,7 +88971,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -89013,7 +89013,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -89205,7 +89205,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -89247,7 +89247,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -89437,7 +89437,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -89479,7 +89479,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -89667,7 +89667,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -89709,7 +89709,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -89897,7 +89897,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -89939,7 +89939,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -90124,7 +90124,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -90166,7 +90166,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -90428,7 +90428,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -90470,7 +90470,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -90690,7 +90690,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -90732,7 +90732,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -91066,7 +91066,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -91108,7 +91108,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -95432,7 +95432,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -95474,7 +95474,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -96387,7 +96387,7 @@ instruments?: (Object | URL)[];exclusiveOptions?: (Object | URL)[];inclusiveOpti }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -96429,7 +96429,7 @@ instruments?: (Object | URL)[];exclusiveOptions?: (Object | URL)[];inclusiveOpti return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -96618,7 +96618,7 @@ instruments?: (Object | URL)[];exclusiveOptions?: (Object | URL)[];inclusiveOpti }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -96660,7 +96660,7 @@ instruments?: (Object | URL)[];exclusiveOptions?: (Object | URL)[];inclusiveOpti return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -96879,7 +96879,7 @@ instruments?: (Object | URL)[];exclusiveOptions?: (Object | URL)[];inclusiveOpti }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -96921,7 +96921,7 @@ instruments?: (Object | URL)[];exclusiveOptions?: (Object | URL)[];inclusiveOpti return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -97131,7 +97131,7 @@ instruments?: (Object | URL)[];exclusiveOptions?: (Object | URL)[];inclusiveOpti }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -97173,7 +97173,7 @@ instruments?: (Object | URL)[];exclusiveOptions?: (Object | URL)[];inclusiveOpti return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -99259,7 +99259,7 @@ relationships?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -99301,7 +99301,7 @@ relationships?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -99489,7 +99489,7 @@ relationships?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -99531,7 +99531,7 @@ relationships?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -99823,7 +99823,7 @@ relationships?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -99865,7 +99865,7 @@ relationships?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -102275,7 +102275,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -102317,7 +102317,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -102607,7 +102607,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -102649,7 +102649,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -102993,7 +102993,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -103035,7 +103035,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -103241,7 +103241,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -103283,7 +103283,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -103486,7 +103486,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -103528,7 +103528,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -103717,7 +103717,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -103759,7 +103759,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -103951,7 +103951,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -103993,7 +103993,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -104183,7 +104183,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -104225,7 +104225,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -104413,7 +104413,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -104455,7 +104455,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -104643,7 +104643,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -104685,7 +104685,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -104870,7 +104870,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -104912,7 +104912,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -105174,7 +105174,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -105216,7 +105216,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -105436,7 +105436,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -105478,7 +105478,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -105812,7 +105812,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -105854,7 +105854,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); diff --git a/packages/vocab-tools/src/__snapshots__/class.test.ts.node.snap b/packages/vocab-tools/src/__snapshots__/class.test.ts.node.snap index 55fff07d5..48654cd3a 100644 --- a/packages/vocab-tools/src/__snapshots__/class.test.ts.node.snap +++ b/packages/vocab-tools/src/__snapshots__/class.test.ts.node.snap @@ -2205,7 +2205,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -2247,7 +2247,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -2454,7 +2454,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -2496,7 +2496,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -2828,7 +2828,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -2870,7 +2870,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -3193,7 +3193,7 @@ get contents(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -3235,7 +3235,7 @@ get contents(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -3479,7 +3479,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -3521,7 +3521,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -3717,7 +3717,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -3759,7 +3759,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -4076,7 +4076,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -4118,7 +4118,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -4435,7 +4435,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -4477,7 +4477,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -4780,7 +4780,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -4822,7 +4822,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -5125,7 +5125,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -5167,7 +5167,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -5481,7 +5481,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -5523,7 +5523,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -5709,7 +5709,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -5751,7 +5751,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -5943,7 +5943,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -5985,7 +5985,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -6177,7 +6177,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -6219,7 +6219,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -6445,7 +6445,7 @@ get summaries(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -6487,7 +6487,7 @@ get summaries(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -6720,7 +6720,7 @@ get urls(): ((URL | Link))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -6762,7 +6762,7 @@ get urls(): ((URL | Link))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -7056,7 +7056,7 @@ get urls(): ((URL | Link))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -7098,7 +7098,7 @@ get urls(): ((URL | Link))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -7392,7 +7392,7 @@ get urls(): ((URL | Link))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -7434,7 +7434,7 @@ get urls(): ((URL | Link))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -7728,7 +7728,7 @@ get urls(): ((URL | Link))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -7770,7 +7770,7 @@ get urls(): ((URL | Link))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -8128,7 +8128,7 @@ get urls(): ((URL | Link))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -8170,7 +8170,7 @@ get urls(): ((URL | Link))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -8501,7 +8501,7 @@ get urls(): ((URL | Link))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -8543,7 +8543,7 @@ get urls(): ((URL | Link))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -8729,7 +8729,7 @@ get urls(): ((URL | Link))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -8771,7 +8771,7 @@ get urls(): ((URL | Link))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -8957,7 +8957,7 @@ get urls(): ((URL | Link))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -8999,7 +8999,7 @@ get urls(): ((URL | Link))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -14203,7 +14203,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -14245,7 +14245,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -14455,7 +14455,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -14497,7 +14497,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -15896,7 +15896,7 @@ instruments?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -15938,7 +15938,7 @@ instruments?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -16270,7 +16270,7 @@ instruments?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -16312,7 +16312,7 @@ instruments?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -16608,7 +16608,7 @@ instruments?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -16650,7 +16650,7 @@ instruments?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -16952,7 +16952,7 @@ instruments?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -16994,7 +16994,7 @@ instruments?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -17290,7 +17290,7 @@ instruments?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -17332,7 +17332,7 @@ instruments?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -17630,7 +17630,7 @@ instruments?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -17672,7 +17672,7 @@ instruments?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -20830,7 +20830,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -20872,7 +20872,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -21058,7 +21058,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -21100,7 +21100,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -24117,7 +24117,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -24159,7 +24159,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -24345,7 +24345,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -24387,7 +24387,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -25611,7 +25611,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -25653,7 +25653,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -25839,7 +25839,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -25881,7 +25881,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -27105,7 +27105,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -27147,7 +27147,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -27332,7 +27332,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -27374,7 +27374,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -28594,7 +28594,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -28636,7 +28636,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -28820,7 +28820,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -28862,7 +28862,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -30425,7 +30425,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -30467,7 +30467,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -30653,7 +30653,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -30695,7 +30695,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -30881,7 +30881,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -30923,7 +30923,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -31109,7 +31109,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -31151,7 +31151,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -31348,7 +31348,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -31390,7 +31390,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -31575,7 +31575,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -31617,7 +31617,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -31802,7 +31802,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -31844,7 +31844,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -32029,7 +32029,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -32071,7 +32071,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -32256,7 +32256,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -32298,7 +32298,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -32483,7 +32483,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -32525,7 +32525,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -32710,7 +32710,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -32752,7 +32752,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -32937,7 +32937,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -32979,7 +32979,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -34920,7 +34920,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -34962,7 +34962,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -36366,7 +36366,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -36408,7 +36408,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -36592,7 +36592,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -36634,7 +36634,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -38527,7 +38527,7 @@ cryptosuite?: \\"eddsa-jcs-2022\\" | null;verificationMethod?: Multikey | URL | }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -38569,7 +38569,7 @@ cryptosuite?: \\"eddsa-jcs-2022\\" | null;verificationMethod?: Multikey | URL | return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -39616,7 +39616,7 @@ owner?: Application | Group | Organization | Person | Service | URL | null;publi }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -39658,7 +39658,7 @@ owner?: Application | Group | Organization | Person | Service | URL | null;publi return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -40594,7 +40594,7 @@ controller?: Application | Group | Organization | Person | Service | URL | null; }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -40636,7 +40636,7 @@ controller?: Application | Group | Organization | Person | Service | URL | null; return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -46986,7 +46986,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -47028,7 +47028,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -47318,7 +47318,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -47360,7 +47360,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -47704,7 +47704,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -47746,7 +47746,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -47952,7 +47952,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -47994,7 +47994,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -48197,7 +48197,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -48239,7 +48239,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -48428,7 +48428,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -48470,7 +48470,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -48662,7 +48662,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -48704,7 +48704,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -48894,7 +48894,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -48936,7 +48936,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -49124,7 +49124,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -49166,7 +49166,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -49354,7 +49354,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -49396,7 +49396,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -49581,7 +49581,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -49623,7 +49623,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -49885,7 +49885,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -49927,7 +49927,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -50147,7 +50147,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -50189,7 +50189,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -50523,7 +50523,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -50565,7 +50565,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -54548,7 +54548,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -54590,7 +54590,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -54800,7 +54800,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -54842,7 +54842,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -57747,7 +57747,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -57789,7 +57789,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -57975,7 +57975,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -58017,7 +58017,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -58201,7 +58201,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -58243,7 +58243,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -63764,7 +63764,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -63806,7 +63806,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -64096,7 +64096,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -64138,7 +64138,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -64482,7 +64482,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -64524,7 +64524,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -64730,7 +64730,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -64772,7 +64772,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -64975,7 +64975,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -65017,7 +65017,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -65206,7 +65206,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -65248,7 +65248,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -65440,7 +65440,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -65482,7 +65482,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -65672,7 +65672,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -65714,7 +65714,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -65902,7 +65902,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -65944,7 +65944,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -66132,7 +66132,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -66174,7 +66174,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -66359,7 +66359,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -66401,7 +66401,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -66663,7 +66663,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -66705,7 +66705,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -66925,7 +66925,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -66967,7 +66967,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -67301,7 +67301,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -67343,7 +67343,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -71025,7 +71025,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -71067,7 +71067,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -76289,7 +76289,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -76331,7 +76331,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -76541,7 +76541,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -76583,7 +76583,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -77533,7 +77533,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -77575,7 +77575,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -79405,7 +79405,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -79447,7 +79447,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -79737,7 +79737,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -79779,7 +79779,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -80123,7 +80123,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -80165,7 +80165,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -80371,7 +80371,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -80413,7 +80413,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -80616,7 +80616,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -80658,7 +80658,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -80847,7 +80847,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -80889,7 +80889,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -81081,7 +81081,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -81123,7 +81123,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -81313,7 +81313,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -81355,7 +81355,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -81543,7 +81543,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -81585,7 +81585,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -81773,7 +81773,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -81815,7 +81815,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -82000,7 +82000,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -82042,7 +82042,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -82304,7 +82304,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -82346,7 +82346,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -82566,7 +82566,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -82608,7 +82608,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -82942,7 +82942,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -82984,7 +82984,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -87527,7 +87527,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -87569,7 +87569,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -87859,7 +87859,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -87901,7 +87901,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -88245,7 +88245,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -88287,7 +88287,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -88493,7 +88493,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -88535,7 +88535,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -88738,7 +88738,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -88780,7 +88780,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -88969,7 +88969,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -89011,7 +89011,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -89203,7 +89203,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -89245,7 +89245,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -89435,7 +89435,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -89477,7 +89477,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -89665,7 +89665,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -89707,7 +89707,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -89895,7 +89895,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -89937,7 +89937,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -90122,7 +90122,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -90164,7 +90164,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -90426,7 +90426,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -90468,7 +90468,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -90688,7 +90688,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -90730,7 +90730,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -91064,7 +91064,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -91106,7 +91106,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -95430,7 +95430,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -95472,7 +95472,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -96385,7 +96385,7 @@ instruments?: (Object | URL)[];exclusiveOptions?: (Object | URL)[];inclusiveOpti }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -96427,7 +96427,7 @@ instruments?: (Object | URL)[];exclusiveOptions?: (Object | URL)[];inclusiveOpti return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -96616,7 +96616,7 @@ instruments?: (Object | URL)[];exclusiveOptions?: (Object | URL)[];inclusiveOpti }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -96658,7 +96658,7 @@ instruments?: (Object | URL)[];exclusiveOptions?: (Object | URL)[];inclusiveOpti return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -96877,7 +96877,7 @@ instruments?: (Object | URL)[];exclusiveOptions?: (Object | URL)[];inclusiveOpti }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -96919,7 +96919,7 @@ instruments?: (Object | URL)[];exclusiveOptions?: (Object | URL)[];inclusiveOpti return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -97129,7 +97129,7 @@ instruments?: (Object | URL)[];exclusiveOptions?: (Object | URL)[];inclusiveOpti }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -97171,7 +97171,7 @@ instruments?: (Object | URL)[];exclusiveOptions?: (Object | URL)[];inclusiveOpti return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -99257,7 +99257,7 @@ relationships?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -99299,7 +99299,7 @@ relationships?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -99487,7 +99487,7 @@ relationships?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -99529,7 +99529,7 @@ relationships?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -99821,7 +99821,7 @@ relationships?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -99863,7 +99863,7 @@ relationships?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -102273,7 +102273,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -102315,7 +102315,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -102605,7 +102605,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -102647,7 +102647,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -102991,7 +102991,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -103033,7 +103033,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -103239,7 +103239,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -103281,7 +103281,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -103484,7 +103484,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -103526,7 +103526,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -103715,7 +103715,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -103757,7 +103757,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -103949,7 +103949,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -103991,7 +103991,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -104181,7 +104181,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -104223,7 +104223,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -104411,7 +104411,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -104453,7 +104453,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -104641,7 +104641,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -104683,7 +104683,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -104868,7 +104868,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -104910,7 +104910,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -105172,7 +105172,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -105214,7 +105214,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -105434,7 +105434,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -105476,7 +105476,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); @@ -105810,7 +105810,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to fetch {url}: {error}\\", { error, url: lookupUrl } ); @@ -105852,7 +105852,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger([\\"fedify\\", \\"vocab\\"]).error( + getLogger([\\"fedify\\", \\"vocab\\"]).debug( \\"Failed to parse {url}: {error}\\", { error: e, url: lookupUrl } ); diff --git a/packages/vocab-tools/src/__snapshots__/class.test.ts.snap b/packages/vocab-tools/src/__snapshots__/class.test.ts.snap index 5e17ac9c9..6a575264f 100644 --- a/packages/vocab-tools/src/__snapshots__/class.test.ts.snap +++ b/packages/vocab-tools/src/__snapshots__/class.test.ts.snap @@ -2207,7 +2207,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -2249,7 +2249,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -2456,7 +2456,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -2498,7 +2498,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -2830,7 +2830,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -2872,7 +2872,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -3195,7 +3195,7 @@ get contents(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -3237,7 +3237,7 @@ get contents(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -3481,7 +3481,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -3523,7 +3523,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -3719,7 +3719,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -3761,7 +3761,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -4078,7 +4078,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -4120,7 +4120,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -4437,7 +4437,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -4479,7 +4479,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -4782,7 +4782,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -4824,7 +4824,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -5127,7 +5127,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -5169,7 +5169,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -5483,7 +5483,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -5525,7 +5525,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -5711,7 +5711,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -5753,7 +5753,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -5945,7 +5945,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -5987,7 +5987,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -6179,7 +6179,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -6221,7 +6221,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -6447,7 +6447,7 @@ get summaries(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -6489,7 +6489,7 @@ get summaries(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -6722,7 +6722,7 @@ get urls(): ((URL | Link))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -6764,7 +6764,7 @@ get urls(): ((URL | Link))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -7058,7 +7058,7 @@ get urls(): ((URL | Link))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -7100,7 +7100,7 @@ get urls(): ((URL | Link))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -7394,7 +7394,7 @@ get urls(): ((URL | Link))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -7436,7 +7436,7 @@ get urls(): ((URL | Link))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -7730,7 +7730,7 @@ get urls(): ((URL | Link))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -7772,7 +7772,7 @@ get urls(): ((URL | Link))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -8130,7 +8130,7 @@ get urls(): ((URL | Link))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -8172,7 +8172,7 @@ get urls(): ((URL | Link))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -8503,7 +8503,7 @@ get urls(): ((URL | Link))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -8545,7 +8545,7 @@ get urls(): ((URL | Link))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -8731,7 +8731,7 @@ get urls(): ((URL | Link))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -8773,7 +8773,7 @@ get urls(): ((URL | Link))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -8959,7 +8959,7 @@ get urls(): ((URL | Link))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -9001,7 +9001,7 @@ get urls(): ((URL | Link))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -14205,7 +14205,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -14247,7 +14247,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -14457,7 +14457,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -14499,7 +14499,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -15898,7 +15898,7 @@ instruments?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -15940,7 +15940,7 @@ instruments?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -16272,7 +16272,7 @@ instruments?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -16314,7 +16314,7 @@ instruments?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -16610,7 +16610,7 @@ instruments?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -16652,7 +16652,7 @@ instruments?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -16954,7 +16954,7 @@ instruments?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -16996,7 +16996,7 @@ instruments?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -17292,7 +17292,7 @@ instruments?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -17334,7 +17334,7 @@ instruments?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -17632,7 +17632,7 @@ instruments?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -17674,7 +17674,7 @@ instruments?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -20832,7 +20832,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -20874,7 +20874,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -21060,7 +21060,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -21102,7 +21102,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -24119,7 +24119,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -24161,7 +24161,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -24347,7 +24347,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -24389,7 +24389,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -25613,7 +25613,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -25655,7 +25655,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -25841,7 +25841,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -25883,7 +25883,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -27107,7 +27107,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -27149,7 +27149,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -27334,7 +27334,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -27376,7 +27376,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -28596,7 +28596,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -28638,7 +28638,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -28822,7 +28822,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -28864,7 +28864,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -30427,7 +30427,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -30469,7 +30469,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -30655,7 +30655,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -30697,7 +30697,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -30883,7 +30883,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -30925,7 +30925,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -31111,7 +31111,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -31153,7 +31153,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -31350,7 +31350,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -31392,7 +31392,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -31577,7 +31577,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -31619,7 +31619,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -31804,7 +31804,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -31846,7 +31846,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -32031,7 +32031,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -32073,7 +32073,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -32258,7 +32258,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -32300,7 +32300,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -32485,7 +32485,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -32527,7 +32527,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -32712,7 +32712,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -32754,7 +32754,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -32939,7 +32939,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -32981,7 +32981,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -34922,7 +34922,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -34964,7 +34964,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -36368,7 +36368,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -36410,7 +36410,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -36594,7 +36594,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -36636,7 +36636,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -38529,7 +38529,7 @@ cryptosuite?: "eddsa-jcs-2022" | null;verificationMethod?: Multikey | URL | null }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -38571,7 +38571,7 @@ cryptosuite?: "eddsa-jcs-2022" | null;verificationMethod?: Multikey | URL | null return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -39618,7 +39618,7 @@ owner?: Application | Group | Organization | Person | Service | URL | null;publi }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -39660,7 +39660,7 @@ owner?: Application | Group | Organization | Person | Service | URL | null;publi return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -40596,7 +40596,7 @@ controller?: Application | Group | Organization | Person | Service | URL | null; }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -40638,7 +40638,7 @@ controller?: Application | Group | Organization | Person | Service | URL | null; return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -46988,7 +46988,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -47030,7 +47030,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -47320,7 +47320,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -47362,7 +47362,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -47706,7 +47706,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -47748,7 +47748,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -47954,7 +47954,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -47996,7 +47996,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -48199,7 +48199,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -48241,7 +48241,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -48430,7 +48430,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -48472,7 +48472,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -48664,7 +48664,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -48706,7 +48706,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -48896,7 +48896,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -48938,7 +48938,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -49126,7 +49126,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -49168,7 +49168,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -49356,7 +49356,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -49398,7 +49398,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -49583,7 +49583,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -49625,7 +49625,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -49887,7 +49887,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -49929,7 +49929,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -50149,7 +50149,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -50191,7 +50191,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -50525,7 +50525,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -50567,7 +50567,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -54550,7 +54550,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -54592,7 +54592,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -54802,7 +54802,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -54844,7 +54844,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -57749,7 +57749,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -57791,7 +57791,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -57977,7 +57977,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -58019,7 +58019,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -58203,7 +58203,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -58245,7 +58245,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -63766,7 +63766,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -63808,7 +63808,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -64098,7 +64098,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -64140,7 +64140,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -64484,7 +64484,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -64526,7 +64526,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -64732,7 +64732,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -64774,7 +64774,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -64977,7 +64977,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -65019,7 +65019,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -65208,7 +65208,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -65250,7 +65250,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -65442,7 +65442,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -65484,7 +65484,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -65674,7 +65674,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -65716,7 +65716,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -65904,7 +65904,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -65946,7 +65946,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -66134,7 +66134,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -66176,7 +66176,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -66361,7 +66361,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -66403,7 +66403,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -66665,7 +66665,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -66707,7 +66707,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -66927,7 +66927,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -66969,7 +66969,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -67303,7 +67303,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -67345,7 +67345,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -71027,7 +71027,7 @@ get names(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -71069,7 +71069,7 @@ get names(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -76291,7 +76291,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -76333,7 +76333,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -76543,7 +76543,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -76585,7 +76585,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -77535,7 +77535,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -77577,7 +77577,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -79407,7 +79407,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -79449,7 +79449,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -79739,7 +79739,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -79781,7 +79781,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -80125,7 +80125,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -80167,7 +80167,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -80373,7 +80373,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -80415,7 +80415,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -80618,7 +80618,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -80660,7 +80660,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -80849,7 +80849,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -80891,7 +80891,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -81083,7 +81083,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -81125,7 +81125,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -81315,7 +81315,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -81357,7 +81357,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -81545,7 +81545,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -81587,7 +81587,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -81775,7 +81775,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -81817,7 +81817,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -82002,7 +82002,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -82044,7 +82044,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -82306,7 +82306,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -82348,7 +82348,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -82568,7 +82568,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -82610,7 +82610,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -82944,7 +82944,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -82986,7 +82986,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -87529,7 +87529,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -87571,7 +87571,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -87861,7 +87861,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -87903,7 +87903,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -88247,7 +88247,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -88289,7 +88289,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -88495,7 +88495,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -88537,7 +88537,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -88740,7 +88740,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -88782,7 +88782,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -88971,7 +88971,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -89013,7 +89013,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -89205,7 +89205,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -89247,7 +89247,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -89437,7 +89437,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -89479,7 +89479,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -89667,7 +89667,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -89709,7 +89709,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -89897,7 +89897,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -89939,7 +89939,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -90124,7 +90124,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -90166,7 +90166,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -90428,7 +90428,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -90470,7 +90470,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -90690,7 +90690,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -90732,7 +90732,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -91066,7 +91066,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -91108,7 +91108,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -95432,7 +95432,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -95474,7 +95474,7 @@ proofs?: (DataIntegrityProof | URL)[];interactionPolicy?: InteractionPolicy | nu return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -96387,7 +96387,7 @@ instruments?: (Object | URL)[];exclusiveOptions?: (Object | URL)[];inclusiveOpti }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -96429,7 +96429,7 @@ instruments?: (Object | URL)[];exclusiveOptions?: (Object | URL)[];inclusiveOpti return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -96618,7 +96618,7 @@ instruments?: (Object | URL)[];exclusiveOptions?: (Object | URL)[];inclusiveOpti }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -96660,7 +96660,7 @@ instruments?: (Object | URL)[];exclusiveOptions?: (Object | URL)[];inclusiveOpti return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -96879,7 +96879,7 @@ instruments?: (Object | URL)[];exclusiveOptions?: (Object | URL)[];inclusiveOpti }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -96921,7 +96921,7 @@ instruments?: (Object | URL)[];exclusiveOptions?: (Object | URL)[];inclusiveOpti return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -97131,7 +97131,7 @@ instruments?: (Object | URL)[];exclusiveOptions?: (Object | URL)[];inclusiveOpti }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -97173,7 +97173,7 @@ instruments?: (Object | URL)[];exclusiveOptions?: (Object | URL)[];inclusiveOpti return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -99259,7 +99259,7 @@ relationships?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -99301,7 +99301,7 @@ relationships?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -99489,7 +99489,7 @@ relationships?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -99531,7 +99531,7 @@ relationships?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -99823,7 +99823,7 @@ relationships?: (Object | URL)[];} }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -99865,7 +99865,7 @@ relationships?: (Object | URL)[];} return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -102275,7 +102275,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -102317,7 +102317,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -102607,7 +102607,7 @@ get preferredUsernames(): ((string | LanguageString))[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -102649,7 +102649,7 @@ get preferredUsernames(): ((string | LanguageString))[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -102993,7 +102993,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -103035,7 +103035,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -103241,7 +103241,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -103283,7 +103283,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -103486,7 +103486,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -103528,7 +103528,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -103717,7 +103717,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -103759,7 +103759,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -103951,7 +103951,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -103993,7 +103993,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -104183,7 +104183,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -104225,7 +104225,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -104413,7 +104413,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -104455,7 +104455,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -104643,7 +104643,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -104685,7 +104685,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -104870,7 +104870,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -104912,7 +104912,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -105174,7 +105174,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -105216,7 +105216,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -105436,7 +105436,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -105478,7 +105478,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); @@ -105812,7 +105812,7 @@ get gateways(): (URL)[] { }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -105854,7 +105854,7 @@ get gateways(): (URL)[] { return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } ); diff --git a/packages/vocab-tools/src/property.ts b/packages/vocab-tools/src/property.ts index 28bcbfbfb..cfc3f9e0e 100644 --- a/packages/vocab-tools/src/property.ts +++ b/packages/vocab-tools/src/property.ts @@ -97,7 +97,7 @@ async function* generateProperty( }); span.end(); if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to fetch {url}: {error}", { error, url: lookupUrl } ); @@ -139,7 +139,7 @@ async function* generateProperty( return obj; } catch (e) { if (options.suppressError) { - getLogger(["fedify", "vocab"]).error( + getLogger(["fedify", "vocab"]).debug( "Failed to parse {url}: {error}", { error: e, url: lookupUrl } );