< prev index next >

src/share/vm/logging/logTagLevelExpression.cpp

Print this page
rev 8933 : 8046148.01

@@ -51,11 +51,11 @@
   bool success = true;
   clear();
   if (str == NULL || strcmp(str, "") == 0) {
     str = DefaultExpressionString;
   }
-  char* copy = os::strdup_check_oom(str, mtInternal);
+  char* copy = os::strdup_check_oom(str, mtLogging);
   // Split string on commas
   for (char *comma_pos = copy, *cur = copy; success && comma_pos != NULL; cur = comma_pos + 1) {
     if (_ncombinations == MaxCombinations) {
       if (errstream != NULL) {
         errstream->print_cr("Can not have more than " SIZE_FORMAT " tag combinations in a what-expression.",
< prev index next >