chore: remove eprintln

This commit is contained in:
rvcas 2023-02-19 20:45:27 -05:00 committed by Lucas
parent 38bcbaf701
commit 39ea803fe6
1 changed files with 0 additions and 1 deletions

View File

@ -89,7 +89,6 @@ impl Server {
fn compile(&mut self, connection: &Connection) -> Result<(), ServerError> {
self.notify_client_of_compilation_start(connection)?;
eprintln!("{:?}", self.compiler.is_some());
if let Some(compiler) = self.compiler.as_mut() {
let result = compiler.compile();