hotspot/src/share/vm/classfile/classLoader.cpp
changeset 35917 463d67f86eaa
parent 35498 392b50de06c6
child 36364 5971776598e5
equal deleted inserted replaced
35912:679f5181ef91 35917:463d67f86eaa
   576         } else {
   576         } else {
   577           return NULL;
   577           return NULL;
   578         }
   578         }
   579       }
   579       }
   580     }
   580     }
   581     if (TraceClassLoading || TraceClassPaths) {
   581     if (TraceClassPaths) {
   582       tty->print_cr("[Opened %s]", path);
   582       tty->print_cr("[Opened %s]", path);
   583     }
   583     }
       
   584     log_info(classload)("opened: %s", path);
   584   } else {
   585   } else {
   585     // Directory
   586     // Directory
   586     new_entry = new ClassPathDirEntry(path);
   587     new_entry = new ClassPathDirEntry(path);
   587     if (TraceClassLoading) {
   588     log_info(classload)("path: %s", path);
   588       tty->print_cr("[Path %s]", path);
       
   589     }
       
   590   }
   589   }
   591   return new_entry;
   590   return new_entry;
   592 }
   591 }
   593 
   592 
   594 
   593