*/
public String createFileLogger(String parent)
throws Exception {
// Create a new FileLogger instance
FileLogger fileLogger = new FileLogger();
// Add the new instance to its parent component
ObjectName pname = new ObjectName(parent);
ContainerBase containerBase = getParentContainerFromParent(pname);
// Add the new instance to its parent component
containerBase.setLogger(fileLogger);
// Return the corresponding MBean name
ObjectName oname = fileLogger.getObjectName();
return (oname.toString());
}