diff options
Diffstat (limited to 'bench/benchmain.cpp')
-rw-r--r-- | bench/benchmain.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/bench/benchmain.cpp b/bench/benchmain.cpp index 949275d588..3080a0f022 100644 --- a/bench/benchmain.cpp +++ b/bench/benchmain.cpp @@ -368,17 +368,16 @@ int tool_main(int argc, char** argv) { if (SkBenchmark::kGPU_Backend == config.backend) { GrContext* context = gContextFactory.get(config.contextType); if (NULL == context) { - logger.logError(SkStringPrintf( - "Error creating GrContext for config %s. Config will be skipped.\n", - config.name)); + SkDebugf("GrContext could not be created for config %s. Config will be skipped.\n", + config.name); configs.remove(i); --i; continue; } if (config.sampleCount > context->getMaxSampleCount()){ - logger.logError(SkStringPrintf( - "Sample count (%d) for config %s is unsupported. Config will be skipped.\n", - config.sampleCount, config.name)); + SkDebugf( + "Sample count (%d) for config %s is not supported. Config will be skipped.\n", + config.sampleCount, config.name); configs.remove(i); --i; continue; |