diff --git a/mindspore/ccsrc/debug/profiler/profiling.cc b/mindspore/ccsrc/debug/profiler/profiling.cc index 12b6ed49ee8..dfb05d93020 100644 --- a/mindspore/ccsrc/debug/profiler/profiling.cc +++ b/mindspore/ccsrc/debug/profiler/profiling.cc @@ -264,11 +264,11 @@ void CollectHostInfo(const std::string &module_name, const std::string &event, c auto profiler_manager = profiler::ProfilerManager::GetInstance(); MS_EXCEPTION_IF_NULL(profiler_manager); if (!profiler_manager->GetProfilingEnableFlag()) { - MS_LOG(INFO) << "Profiler is not enabled, no need to record Host info."; + MS_LOG(DEBUG) << "Profiler is not enabled, no need to record Host info."; return; } if (!profiler_manager->EnableCollectHost()) { - MS_LOG(INFO) << "Profiler profile_framework is not enabled, no need to record Host info."; + MS_LOG(DEBUG) << "Profiler profile_framework is not enabled, no need to record Host info."; return; } auto output_path = profiler_manager->ProfileDataPath();