[modular][manifests] Remove some log spam when no manifest is found.

TEST=none

Change-Id: I986324d517c9e2aece210bebdcbccefeda39b5ab
diff --git a/bin/module_resolver/local_module_resolver.cc b/bin/module_resolver/local_module_resolver.cc
index 630542f..0ac049b 100644
--- a/bin/module_resolver/local_module_resolver.cc
+++ b/bin/module_resolver/local_module_resolver.cc
@@ -106,7 +106,6 @@
       auto found_handlers =
           local_module_resolver_->FindHandlers(query_.handler);
       if (found_handlers.empty()) {
-        FXL_LOG(INFO) << "No manifest found for handler=" << query_.handler;
         response_ = CreateEmptyResponseWithStatus(
             fuchsia::modular::FindModulesStatus::UNKNOWN_HANDLER);
         return;
diff --git a/bin/sessionmgr/puppet_master/command_runners/operation_calls/add_mod_call.cc b/bin/sessionmgr/puppet_master/command_runners/operation_calls/add_mod_call.cc
index 1460cc1..08e7616 100644
--- a/bin/sessionmgr/puppet_master/command_runners/operation_calls/add_mod_call.cc
+++ b/bin/sessionmgr/puppet_master/command_runners/operation_calls/add_mod_call.cc
@@ -81,10 +81,6 @@
               } break;
 
               case fuchsia::modular::FindModulesStatus::UNKNOWN_HANDLER: {
-                FXL_LOG(INFO)
-                    << "Module Resolver does not know about module '"
-                    << intent_.handler << "' with action = '" << intent_.action
-                    << "'. Going to try using it anyway..";
                 candidate_module_.module_id = intent_.handler;
               } break;
             }