"use client"; import { Select } from "@mantine/core"; import type { LogLevel } from "@homarr/core/infrastructure/logs/constants"; import { logLevelConfiguration, logLevels } from "@homarr/core/infrastructure/logs/constants"; import { useI18n } from "@homarr/translation/client"; import { useLogContext } from "./log-context"; export const LogLevelSelection = () => { const { level, setLevel } = useLogContext(); const t = useI18n(); return (