nsarrazin commited on
Commit
d251d9a
·
1 Parent(s): 52778aa

fix: remove unnecessary error logging

Browse files
Files changed (1) hide show
  1. src/lib/utils/template.ts +1 -1
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
  }