diff options
Diffstat (limited to 'lib/Utils/parse_release.cpp')
-rw-r--r-- | lib/Utils/parse_release.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Utils/parse_release.cpp b/lib/Utils/parse_release.cpp index 33d3edb1..b96cab76 100644 --- a/lib/Utils/parse_release.cpp +++ b/lib/Utils/parse_release.cpp @@ -11,6 +11,7 @@ void parse_release(const char *pRelease, string& pProduct, string& pVersion) { pProduct = "Fedora"; pVersion = "rawhide"; + VERB3 log("%s:Version is '%s' and product is '%s'",__func__, pVersion.c_str(), pProduct.c_str()); return; } if (strstr(pRelease, "Fedora")) @@ -35,4 +36,5 @@ void parse_release(const char *pRelease, string& pProduct, string& pVersion) } space++; } + VERB3 log("%s:Version is '%s' and product is '%s'",__func__, pVersion.c_str(), pProduct.c_str()); } |