From a766bc173eabeb53d6cd35bb5bec485acfa12bb5 Mon Sep 17 00:00:00 2001 From: Senthil Date: Thu, 17 Mar 2016 11:31:14 -0700 Subject: [PATCH] Relax error case if runtime config is not present --- src/corehost/cli/fxr/fx_muxer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/corehost/cli/fxr/fx_muxer.cpp b/src/corehost/cli/fxr/fx_muxer.cpp index b371832bc..5638043a7 100644 --- a/src/corehost/cli/fxr/fx_muxer.cpp +++ b/src/corehost/cli/fxr/fx_muxer.cpp @@ -26,7 +26,7 @@ pal::string_t fx_muxer_t::resolve_fx_dir(const pal::string_t& muxer_dir, runtime fx_ver_t specified(-1, -1, -1); if (!fx_ver_t::parse(fx_ver, &specified, false)) { - trace::error(_X("The specified runtimeconfig.json version [%s] could not be parsed"), fx_ver.c_str()); + trace::info(_X("The specified runtimeconfig.json version [%s] could not be parsed"), fx_ver.c_str()); return pal::string_t(); }