Files
hatchet/frontend/docs/lib/generated/snips/python/logger/client.ts
Matt Kaye 246f284a98 Fix: Quote replacement in generated doc snippets (#1755)
* fix: get rid of quote replacing

* chore: gen

* drive by: event doc wording

* fix: dedenting
2025-05-20 09:19:58 -04:00

17 lines
566 B
TypeScript

import { Snippet } from '@/lib/generated/snips/types';
const snippet: Snippet = {
"language": "python",
"content": "# > RootLogger\n\n\nimport logging\n\nfrom hatchet_sdk import ClientConfig, Hatchet\n\nlogging.basicConfig(level=logging.INFO)\n\nroot_logger = logging.getLogger()\n\nhatchet = Hatchet(\n debug=True,\n config=ClientConfig(\n logger=root_logger,\n ),\n)\n\n",
"source": "out/python/logger/client.py",
"blocks": {
"rootlogger": {
"start": 2,
"stop": 18
}
},
"highlights": {}
};
export default snippet;