Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

normalize logs capital letter #463

Merged
merged 2 commits into from
Jul 22, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
standardize logs
  • Loading branch information
robjtede committed Jul 22, 2022
commit bcd65857df7742a3897d151aa97f1427da54a16d
2 changes: 1 addition & 1 deletion actix-server/examples/file-reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ async fn run() -> io::Result<()> {
// close connection after file has been copied to TCP stream
Ok(())
})
.map_err(|err| tracing::error!("service Error: {:?}", err))
.map_err(|err| tracing::error!("service error: {:?}", err))
})?
.workers(2)
.run()
Expand Down
4 changes: 2 additions & 2 deletions actix-server/examples/tcp-echo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ async fn run() -> io::Result<()> {

// stream error; bail from loop with error
Err(err) => {
tracing::error!("stream Error: {:?}", err);
tracing::error!("stream error: {:?}", err);
return Err(());
}
}
Expand All @@ -74,7 +74,7 @@ async fn run() -> io::Result<()> {
Ok((buf.freeze(), size))
}
})
.map_err(|err| tracing::error!("service Error: {:?}", err))
.map_err(|err| tracing::error!("service error: {:?}", err))
.and_then(move |(_, size)| {
let num = num2.load(Ordering::SeqCst);
tracing::info!("[{}] total bytes read: {}", num, size);
Expand Down
6 changes: 3 additions & 3 deletions actix-server/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,9 @@ impl ServerInner {
let is_tokio = tokio::runtime::Handle::try_current().is_ok();

match (is_actix, is_tokio) {
(true, _) => info!("actix runtime found; starting in actix runtime"),
(_, true) => info!("tokio runtime found; starting in existing tokio runtime"),
(_, false) => panic!("actix or tokio runtime not found; halting"),
(true, _) => info!("Actix runtime found; starting in Actix runtime"),
(_, true) => info!("Tokio runtime found; starting in existing Tokio runtime"),
(_, false) => panic!("Actix or Tokio runtime not found; halting"),
}

for (_, name, lst) in &builder.sockets {
Expand Down
2 changes: 1 addition & 1 deletion actix-server/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ where
Ok(())
}
Err(err) => {
error!("can not convert to an async tcp stream: {}", err);
error!("can not convert to an async TCP stream: {}", err);
Err(())
}
})
Expand Down
4 changes: 2 additions & 2 deletions actix-server/tests/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,9 @@ fn test_start() {
#[actix_rt::test]
async fn test_max_concurrent_connections() {
// Note:
// A tcp listener would accept connects based on it's backlog setting.
// A TCP listener would accept connects based on it's backlog setting.
//
// The limit test on the other hand is only for concurrent tcp stream limiting a work
// The limit test on the other hand is only for concurrent TCP stream limiting a work
// thread accept.

use tokio::io::AsyncWriteExt;
Expand Down
6 changes: 3 additions & 3 deletions actix-tls/src/connect/native_tls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,16 +74,16 @@ where
let connector = self.connector.clone();

Box::pin(async move {
trace!("SSL handshake start for: {:?}", stream.hostname());
trace!("TLS handshake start for: {:?}", stream.hostname());
connector
.connect(stream.hostname(), io)
.await
.map(|res| {
trace!("SSL handshake success: {:?}", stream.hostname());
trace!("TLS handshake success: {:?}", stream.hostname());
stream.replace_io(res).1
})
.map_err(|e| {
trace!("SSL handshake error: {:?}", e);
trace!("TLS handshake error: {:?}", e);
io::Error::new(io::ErrorKind::Other, format!("{}", e))
})
})
Expand Down
7 changes: 4 additions & 3 deletions actix-tls/src/connect/openssl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ where
actix_service::always_ready!();

fn call(&self, stream: Connection<R, IO>) -> Self::Future {
trace!("SSL handshake start for: {:?}", stream.hostname());
trace!("TLS handshake start for: {:?}", stream.hostname());

let (io, stream) = stream.replace_io(());
let host = stream.hostname();

Expand Down Expand Up @@ -137,11 +138,11 @@ where
match ready!(Pin::new(this.io.as_mut().unwrap()).poll_connect(cx)) {
Ok(_) => {
let stream = this.stream.take().unwrap();
trace!("SSL handshake success: {:?}", stream.hostname());
trace!("TLS handshake success: {:?}", stream.hostname());
Poll::Ready(Ok(stream.replace_io(this.io.take().unwrap()).1))
}
Err(err) => {
trace!("SSL handshake error: {:?}", err);
trace!("TLS handshake error: {:?}", err);
Poll::Ready(Err(io::Error::new(
io::ErrorKind::Other,
format!("{}", err),
Expand Down
4 changes: 2 additions & 2 deletions actix-tls/src/connect/rustls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ where
actix_service::always_ready!();

fn call(&self, connection: Connection<R, IO>) -> Self::Future {
trace!("SSL handshake start for: {:?}", connection.hostname());
trace!("TLS handshake start for: {:?}", connection.hostname());
let (stream, connection) = connection.replace_io(());

match ServerName::try_from(connection.hostname()) {
Expand Down Expand Up @@ -140,7 +140,7 @@ where
Self::Future { connect, connection } => {
let stream = ready!(Pin::new(connect).poll(cx))?;
let connection = connection.take().unwrap();
trace!("SSL handshake success: {:?}", connection.hostname());
trace!("TLS handshake success: {:?}", connection.hostname());
Poll::Ready(Ok(connection.replace_io(stream).1))
}
}
Expand Down
4 changes: 2 additions & 2 deletions actix-tls/src/connect/tcp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ impl<R: Host> TcpConnectorFut<R> {
stream: ReusableBoxFuture::new(connect(addr, local_addr)),
},

// when resolver returns multiple socket addr for request they would be popped from
// front end of queue and returns with the first successful tcp connection.
// When resolver returns multiple socket addr for request they would be popped from
// front end of queue and returns with the first successful TCP connection.
ConnectAddrs::Multi(mut addrs) => {
let addr = addrs.pop_front().unwrap();

Expand Down