diff --git a/apps/nextjs/src/app/[locale]/manage/tools/logs/level-selection.tsx b/apps/nextjs/src/app/[locale]/manage/tools/logs/level-selection.tsx new file mode 100644 index 000000000..fdfe23e18 --- /dev/null +++ b/apps/nextjs/src/app/[locale]/manage/tools/logs/level-selection.tsx @@ -0,0 +1,26 @@ +"use client"; + +import { Select } from "@mantine/core"; + +import type { LogLevel } from "@homarr/log/constants"; +import { logLevelConfiguration, logLevels } from "@homarr/log/constants"; +import { useI18n } from "@homarr/translation/client"; + +import { useLogContext } from "./log-context"; + +export const LogLevelSelection = () => { + const { level, setLevel } = useLogContext(); + const t = useI18n(); + + return ( +