Revert "[Tizen] Sync test harness"
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / dali-toolkit-test-utils / test-application.cpp
index a8354e8..e4c6078 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2023 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2022 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -99,15 +99,15 @@ TestApplication::~TestApplication()
   delete mCore;
 }
 
-void TestApplication::LogContext(bool start, const char* tag, const char* message)
+void TestApplication::LogContext(bool start, const char* tag)
 {
   if(start)
   {
-    fprintf(stderr, "INFO: Trace Start: %s %s\n", tag, message ? message : "");
+    fprintf(stderr, "INFO: Trace Start: %s\n", tag);
   }
   else
   {
-    fprintf(stderr, "INFO: Trace End: %s %s\n", tag, message ? message : "");
+    fprintf(stderr, "INFO: Trace End: %s\n", tag);
   }
 }