diff options
-rw-r--r-- | ports/servoshell/Cargo.toml | 3 | ||||
-rw-r--r-- | ports/servoshell/egl/android.rs | 2 | ||||
-rw-r--r-- | ports/servoshell/egl/ohos.rs | 2 |
3 files changed, 2 insertions, 5 deletions
diff --git a/ports/servoshell/Cargo.toml b/ports/servoshell/Cargo.toml index 75c734d4280..cfa5486bd10 100644 --- a/ports/servoshell/Cargo.toml +++ b/ports/servoshell/Cargo.toml @@ -131,6 +131,3 @@ sig = "1.0" webxr = { git = "https://github.com/servo/webxr", features = ["ipc", "glwindow", "headless", "openxr-api"] } windows-sys = { workspace = true, features = ["Win32_Graphics_Gdi"] } libservo = { path = "../../components/servo", features = ["no-wgl"] } - -[lints.rust] -unexpected_cfgs = { level = "allow", check-cfg = ['cfg(production)'] } diff --git a/ports/servoshell/egl/android.rs b/ports/servoshell/egl/android.rs index 2e54b43e518..f53ed5b2f51 100644 --- a/ports/servoshell/egl/android.rs +++ b/ports/servoshell/egl/android.rs @@ -122,7 +122,7 @@ pub extern "C" fn Java_org_servo_servoview_JNIServo_init<'local>( // We only redirect stdout and stderr for non-production builds, since it is // only used for debugging purposes. This saves us one thread in production. - #[cfg(not(production))] + #[cfg(not(servo_production))] if let Err(e) = super::log::redirect_stdout_and_stderr() { error!("Failed to redirect stdout and stderr to logcat due to: {e:?}"); } diff --git a/ports/servoshell/egl/ohos.rs b/ports/servoshell/egl/ohos.rs index 0864e16b27f..d5bf4b4dafb 100644 --- a/ports/servoshell/egl/ohos.rs +++ b/ports/servoshell/egl/ohos.rs @@ -342,7 +342,7 @@ fn initialize_logging_once() { // We only redirect stdout and stderr for non-production builds, since it is // only used for debugging purposes. This saves us one thread in production. - #[cfg(not(production))] + #[cfg(not(servo_production))] if let Err(e) = super::log::redirect_stdout_and_stderr() { error!("Failed to redirect stdout and stderr to hilog due to: {e:?}"); } |