Remove println (#4524)
Co-authored-by: Emmanuel Keller <emmanuel.keller@surrealdb.com>
This commit is contained in:
parent
78b5f8f1d0
commit
6d26797e56
1 changed files with 1 additions and 4 deletions
|
@ -393,10 +393,7 @@ impl Parser<'_> {
|
|||
) -> ParseResult<Value> {
|
||||
match self.peek_kind() {
|
||||
t!("$param") => ctx.run(|ctx| self.parse_closure(ctx, start)).await,
|
||||
v => {
|
||||
println!("{:?}", v);
|
||||
self.parse_mock(start).map(Value::Mock)
|
||||
}
|
||||
_ => self.parse_mock(start).map(Value::Mock),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue