enable logs; add sentry logging to block runs (debugger) (#3205)

This commit is contained in:
Jonathan Dobson
2025-08-15 11:25:53 -04:00
committed by GitHub
parent e09bf89f19
commit fc55729257
5 changed files with 111 additions and 18 deletions

View File

@@ -0,0 +1,9 @@
import { LoggingContext } from "@/store/LoggingContext";
import { useContext } from "react";
function useLogging() {
const getLogging = useContext(LoggingContext);
return getLogging();
}
export { useLogging };