aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-01-05 15:56:35 +0000
committerYann Herklotz <ymherklotz@gmail.com>2018-01-05 15:56:35 +0000
commitdb6480dccd9a3dbf4100a824930a36251f4e743c (patch)
treea36c5be39c86f9888e64076ef44c386e5160c088 /tests
parent7b95e3a9eacf296f215c73e5d8ad9090a24adb20 (diff)
downloadYAGE-db6480dccd9a3dbf4100a824930a36251f4e743c.tar.gz
YAGE-db6480dccd9a3dbf4100a824930a36251f4e743c.zip
[Engine] Log levels added to engine.
Diffstat (limited to 'tests')
-rw-r--r--tests/log/test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/log/test.cpp b/tests/log/test.cpp
index bf087855..d7e50540 100644
--- a/tests/log/test.cpp
+++ b/tests/log/test.cpp
@@ -12,8 +12,8 @@
int main()
{
- yLog << "First message";
+ yLogError << "First message";
- yLog << "Second Message";
+ yLogError << "Second Message";
std::cout << "COUT\n";
}