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

Turn nailgun initialization message down to debug #21865

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use std::time::{Duration, Instant};
use async_lock::{Mutex, MutexGuardArc};
use futures::future;
use lazy_static::lazy_static;
use log::{debug, info};
use log::debug;
use regex::Regex;
use tempfile::TempDir;
use tokio::sync::{OwnedSemaphorePermit, Semaphore};
Expand Down Expand Up @@ -67,7 +67,7 @@ pub struct NailgunPool {

impl NailgunPool {
pub fn new(workdir_base: PathBuf, size: usize, store: Store, executor: Executor) -> Self {
info!("Initializing Nailgun pool for {} processes...", size);
debug!("Initializing Nailgun pool for {} processes...", size);
NailgunPool {
workdir_base,
size,
Expand Down
Loading