ws load test: use log crate instead of eprintln

This commit is contained in:
Joakim Frostegård 2022-11-12 15:30:16 +01:00
parent b122492713
commit 38a4856242
2 changed files with 6 additions and 6 deletions

View file

@ -29,7 +29,7 @@ impl Default for Config {
fn default() -> Self {
Self {
server_address: "127.0.0.1:3000".parse().unwrap(),
log_level: LogLevel::Error,
log_level: LogLevel::Warn,
num_workers: 1,
num_connections_per_worker: 16,
connection_creation_interval_ms: 10,