(depth int, f string, args ...interface{})
| 25 | } |
| 26 | |
| 27 | func debugf(depth int, f string, args ...interface{}) { |
| 28 | if Trace { |
| 29 | f = strings.Repeat("→ ", depth) + f |
| 30 | u.DoLog(3, u.DEBUG, fmt.Sprintf(f, args...)) |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | // We have a default Dialect, which is the "Language" or rule-set of ql |
| 35 | var DefaultDialect *lex.Dialect = lex.LogicalExpressionDialect |