Less verbose logging.

This commit is contained in:
Nick Thompson 2020-11-20 15:12:23 -05:00
parent ff7de5a72e
commit 5d4c3f0c61
3 changed files with 0 additions and 3 deletions

@ -277,7 +277,6 @@ InitializeResult Initialize(int& argc, char* argv[], InitializeOptions opts)
for (const opt::Option* opt = options[UNKNOWN]; opt != nullptr; opt = opt->next())
{
VTKM_LOG_S(vtkm::cont::LogLevel::Info, "Unknown option to Initialize: " << opt->name << "\n");
if ((opts & InitializeOptions::ErrorOnBadOption) != InitializeOptions::None)
{
std::cerr << "Unknown option: " << opt->name << std::endl;

@ -128,7 +128,6 @@ void InitLogging(int& argc, char* argv[])
SetStderrLogLevel(vtkm::cont::LogLevel::Warn);
loguru::init(argc, argv);
LOG_F(INFO, "Logging initialized.");
#else // VTKM_ENABLE_LOGGING
(void)argc;
(void)argv;

@ -32,7 +32,6 @@ void TestPixelTypeOperations(const vtkm::UInt16& numPixels = 10)
{
pixelVal += (i + j) << (shift * 8);
}
VTKM_LOG_S(vtkm::cont::LogLevel::Info, "pixelVal[" << i << "] = " << pixelVal);
PixelType pixel(pixelVal);
pixelVector[i] = pixel;