Improve logging ever so slightly

This commit is contained in:
Eryn Wells 2017-01-27 20:53:31 -08:00
parent ddf13f9bae
commit 9f1500c1b6

View file

@ -480,7 +480,7 @@ impl Iterator for Lexer {
Some(c) => c,
None => '\0',
};
println!("{:?}! c='{}'", self.state, c);
println!("state={:?} c='{}'", self.state, c);
let previous_forward = self.forward;
let result = match self.state {
State::Char=> self.state_char(c),