Reporting dali version on stderr instead of stdout 07/56807/5
authorDavid Steele <david.steele@samsung.com>
Tue, 12 Jan 2016 17:34:41 +0000 (17:34 +0000)
committerDavid Steele <david.steele@samsung.com>
Wed, 20 Jan 2016 19:15:00 +0000 (19:15 +0000)
Can use JSON parser directly from library without requiring a dali
application. If the writer is used to write to stdout, then the output
is 'corrupted' by having the library version numbers within it. It is
better instead to report the version numbers on stderr (Better still
to log them, rather than using stream).

Change-Id: Ie1cb6b1e3cc04a6e4f643ed4d6336f33b2e025f0

dali-toolkit/public-api/dali-toolkit-version.cpp

index f8d7918..9f79c9c 100644 (file)
@@ -42,7 +42,7 @@ struct PrintVersion
 {
   PrintVersion()
   {
-    std::cout << "DALi Toolkit:   " << TOOLKIT_MAJOR_VERSION << "." << TOOLKIT_MINOR_VERSION << "." << TOOLKIT_MICRO_VERSION << " (" << TOOLKIT_BUILD_DATE << ")" << std::endl;
+    std::cerr << "DALi Toolkit:   " << TOOLKIT_MAJOR_VERSION << "." << TOOLKIT_MINOR_VERSION << "." << TOOLKIT_MICRO_VERSION << " (" << TOOLKIT_BUILD_DATE << ")" << std::endl;
   }
 };
 PrintVersion TOOLKIT_VERSION;