From 9db287a4f56a09cfe40e7cc323e14d8e753a705b Mon Sep 17 00:00:00 2001 From: Christopher Anderson <cja@google.com> Date: Thu, 9 May 2019 17:34:17 +0000 Subject: [PATCH] [devmgr] Reduce log spew with isolated devmgrs When devcoordinator comes online it prints an error message if the root resource is not available, so it is unnecessary to print that the resource is unavailable several tiems later on. Change-Id: I0785840b53603a4495db286c1bf3495330e4b13f --- zircon/system/core/devmgr/devhost/devhost.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zircon/system/core/devmgr/devhost/devhost.cpp b/zircon/system/core/devmgr/devhost/devhost.cpp index 3a232d86eb5..97b14bb99e0 100644 --- a/zircon/system/core/devmgr/devhost/devhost.cpp +++ b/zircon/system/core/devmgr/devhost/devhost.cpp @@ -1411,7 +1411,7 @@ __EXPORT int device_host_main(int argc, char** argv) { root_resource_handle = zx_take_startup_handle(PA_HND(PA_RESOURCE, 0)); if (root_resource_handle == ZX_HANDLE_INVALID) { - log(ERROR, "devhost: no root resource handle!\n"); + log(TRACE, "devhost: no root resource handle!\n"); } zx_status_t r; -- GitLab