diff --git a/src/lib/layout/logs.svelte b/src/lib/layout/logs.svelte index 3b032927b..127ae9df8 100644 --- a/src/lib/layout/logs.svelte +++ b/src/lib/layout/logs.svelte @@ -10,7 +10,8 @@ TableCellHead, TableCellText, TableHeader, - TableRow + TableRow, + TableScroll } from '$lib/elements/table'; import { beforeNavigate } from '$app/navigation'; import Table from '$lib/elements/table/table.svelte'; @@ -175,7 +176,7 @@ {#if selectedRequest === 'parameters'} {#if parameters?.length}
- + Name Value @@ -192,15 +193,15 @@ {/each} -
+
{:else}

Logging parameters data might compromise privacy and security. To log them intentionally, use context.log(context.req.headers). + >context.log(context.req.headers) + in your function and make them available in Logs tab. - + Name Value @@ -230,15 +231,15 @@ {/each} -
+ {:else}

Header data is not captured by Appwrite for your user's security and privacy. To log data intentionally, use context.log(). + >context.log() + in your function and make them available in Logs tab.

Logging body might compromise privacy and security. To log - it intentionally, use context.log(). + it intentionally, use context.log() in your function + and make them available in Logs tab. + Name Value @@ -323,13 +325,14 @@ {/each} - + {:else}

Logging some headers might compromise privacy and security. We only log well-known public headers. To log - more headers intentionally, use context.log(). + more headers intentionally, use context.log() in + your function and make them available in Logs tab.

Logging body might compromise privacy and security. To log - it intentionally, use context.log(). + it intentionally, use context.log() in your function + and make them available in Logs tab.