Skip to content

Commit 77201df

Browse files
committed
fix: add level
1 parent 124cc57 commit 77201df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/logs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export function getLogsLink({dbName, logging}: GetLogsLinkProps): string {
2323

2424
const updatedQuery = decodedQuery.replace(/\{([^}]*)\}/, (_match, contents) => {
2525
const trimmedContents = contents.trim();
26-
return `{${trimmedContents}${trimmedContents ? ', ' : ''}database = "${dbName}"}`;
26+
return `{${trimmedContents}${trimmedContents ? ', ' : ''}database = "${dbName}", level = "ERROR"}`;
2727
});
2828

2929
url.searchParams.set('query', updatedQuery);

0 commit comments

Comments
 (0)