mirror of
https://github.com/idanoo/autobrr
synced 2025-07-26 10:19:13 +00:00

* chore: update copyright year in license headers * Revert "chore: update copyright year in license headers" This reverts commit 3e58129c431b9a491089ce36b908f9bb6ba38ed3. * chore: update copyright year in license headers * fix: sort go imports * fix: add missing license headers
33 lines
810 B
TypeScript
33 lines
810 B
TypeScript
/*
|
|
* Copyright (c) 2021 - 2025, Ludvig Lundgren and the autobrr contributors.
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
import { FC } from "react";
|
|
import { SettingsContext } from "@utils/Context";
|
|
|
|
interface DebugProps {
|
|
values: unknown;
|
|
}
|
|
|
|
export const DEBUG: FC<DebugProps> = ({ values }) => {
|
|
const settings = SettingsContext.useValue();
|
|
|
|
if (process.env.NODE_ENV !== "development" || !settings.debug) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<div className="w-full p-2 flex flex-col mt-6 bg-gray-100 dark:bg-gray-900">
|
|
<pre className="dark:text-gray-400 break-all whitespace-pre-wrap">{JSON.stringify(values, null, 2)}</pre>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export function LogDebug(...data: any[]): void {
|
|
if (process.env.NODE_ENV !== "development") {
|
|
return;
|
|
}
|
|
|
|
console.log(...data)
|
|
}
|