Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: logs copy #1224

Merged
merged 1 commit into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,7 @@
<div class="common-section">
<Alert type="info" isStandalone>
<svelte:fragment slot="title">Your execution logs are disabled</svelte:fragment>

To see the latest execution logs, enable them in your
To view execution logs and errors, enable them in your
<a
href={`${base}/project-${$project.$id}/functions/function-${$func.$id}/settings`}
class="link">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@
<CardGrid>
<Heading tag="h6" size="7">Execution logs</Heading>
<p>
Enable or disable execution logs. We recommend disabling logs when transferring critical
data or for performance reasons.
Enable or disable execution logs. We recommend disabling them for better performance in
production.
</p>
<svelte:fragment slot="aside">
<FormList>
<InputSwitch label="Logs" id="logging" bind:value={functionLogging}>
<svelte:fragment slot="description">
<p>
When enabled, all execution responses will be accessible in the <a
When disabled, execution logs and errors will not be shown in the <a
href={`${base}/project-${$project.$id}/functions/function-${$func.$id}/executions`}
class="link">
Executions</a> tab
Expand Down
Loading