Spaces:
Sleeping
Sleeping
fix: remove unnecessary error logging
Browse files
src/lib/utils/template.ts
CHANGED
|
@@ -25,7 +25,7 @@ export function compileTemplate<T>(
|
|
| 25 |
// Try to compile with Jinja
|
| 26 |
jinjaTemplate = new Template(input);
|
| 27 |
} catch (e) {
|
| 28 |
-
logger.error(e, "Could not compile with Jinja");
|
| 29 |
// Could not compile with Jinja
|
| 30 |
jinjaTemplate = undefined;
|
| 31 |
}
|
|
|
|
| 25 |
// Try to compile with Jinja
|
| 26 |
jinjaTemplate = new Template(input);
|
| 27 |
} catch (e) {
|
| 28 |
+
// logger.error(e, "Could not compile with Jinja");
|
| 29 |
// Could not compile with Jinja
|
| 30 |
jinjaTemplate = undefined;
|
| 31 |
}
|