Moved "Wrote screenshot..." message from log_debug to log_info
authorIngo Ruhnke <grumbel@gmail.com>
Sat, 4 Oct 2014 13:34:06 +0000 (15:34 +0200)
committerIngo Ruhnke <grumbel@gmail.com>
Sat, 4 Oct 2014 13:34:06 +0000 (15:34 +0200)
src/video/gl/gl_renderer.cpp
src/video/sdl/sdl_renderer.cpp

index 4c249de..8f4a18e 100644 (file)
@@ -200,7 +200,7 @@ GLRenderer::do_take_screenshot()
     fullFilename = writeDir + dirSep + fileName;
     if (!PHYSFS_exists(fileName.c_str())) {
       SDL_SaveBMP(shot_surf, fullFilename.c_str());
-      log_debug << "Wrote screenshot to \"" << fullFilename << "\"" << std::endl;
+      log_info << "Wrote screenshot to \"" << fullFilename << "\"" << std::endl;
       SDL_FreeSurface(shot_surf);
       return;
     }
index 2ed479e..5b35252 100644 (file)
@@ -219,7 +219,7 @@ SDLRenderer::do_take_screenshot()
           fullFilename = writeDir + dirSep + fileName;
           if (!PHYSFS_exists(fileName.c_str())) {
             SDL_SaveBMP(surface, fullFilename.c_str());
-            log_debug << "Wrote screenshot to \"" << fullFilename << "\"" << std::endl;
+            log_info << "Wrote screenshot to \"" << fullFilename << "\"" << std::endl;
             return;
           }
         }