From 6e503d411267b3b3e11f6d191bac6a7f930c8cf1 Mon Sep 17 00:00:00 2001 From: Stefan Sayer Date: Thu, 16 Sep 2010 20:55:12 +0200 Subject: [PATCH] a bit more verbosity when configured 100rel wrong --- core/AmConfig.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/AmConfig.cpp b/core/AmConfig.cpp index 74c7fb1f..e693a2a2 100644 --- a/core/AmConfig.cpp +++ b/core/AmConfig.cpp @@ -532,10 +532,12 @@ int AmConfig::readConfiguration() } else if (rel100s == "require") { rel100 = REL100_REQUIRE; } else { - ERROR("unknown setting for '100rel' config option.\n"); + ERROR("unknown setting for '100rel' config option: '%s'.\n", + rel100s.c_str()); return -1; } } + INFO("100rel: %d.\n", AmConfig::rel100); return 0;