Remove debug messages as I went insane trying to fix the tiny CRLF problem in process_request()

This commit is contained in:
abbie 2021-09-02 17:28:07 +01:00
parent 3f85e46d01
commit 00ebb833aa

View file

@ -1,4 +1,4 @@
use std::io::{Write, BufReader, BufRead}; se std::io::{Write, BufReader, BufRead};
use std::net::{TcpListener, TcpStream}; use std::net::{TcpListener, TcpStream};
use std::fs; use std::fs;
use std::string::{String}; use std::string::{String};
@ -13,7 +13,6 @@ fn get_page(filename: String) -> String {
return result.to_string(); return result.to_string();
} else { } else {
println!("Read");
let result = fs::read_to_string(filename); let result = fs::read_to_string(filename);
match result { match result {
@ -43,7 +42,6 @@ fn process_request(request: Vec<u8>) -> String {
let mut chars = input.chars(); let mut chars = input.chars();
chars.next(); chars.next();
output = chars.as_str(); output = chars.as_str();
println!("CHARS");
} else { } else {
output = "index.html"; output = "index.html";
} }
@ -54,7 +52,6 @@ fn process_request(request: Vec<u8>) -> String {
println!("Stream sent unhandlable request type."); println!("Stream sent unhandlable request type.");
output = ".503"; output = ".503";
} }
println!("{}", output.to_string());
// Did you want to see chars.as_str().to_string()? // Did you want to see chars.as_str().to_string()?
return output.to_string(); return output.to_string();