Use debug instead of println in devtools

This commit is contained in:
Manish Goregaokar 2016-05-27 15:09:26 +05:30
parent 4dcb05ca4f
commit 48257ef282
No known key found for this signature in database
GPG key ID: 3BBF4D3E2EF79F98
8 changed files with 17 additions and 11 deletions

View file

@ -110,7 +110,7 @@ impl Actor for ConsoleActor {
match str_type {
"PageError" => message_types.insert(PAGE_ERROR),
"ConsoleAPI" => message_types.insert(CONSOLE_API),
s => println!("unrecognized message type requested: \"{}\"", s),
s => debug!("unrecognized message type requested: \"{}\"", s),
};
};
let (chan, port) = ipc::channel().unwrap();