src/jdk.jfr/share/classes/jdk/jfr/internal/dcmd/DCmdConfigure.java
changeset 50745 a390cbb82d47
parent 50113 caf115bb98ad
child 52413 6372f5af9612
equal deleted inserted replaced
50744:6c306d54366d 50745:a390cbb82d47
    68             Long memorySize,
    68             Long memorySize,
    69             Long maxChunkSize,
    69             Long maxChunkSize,
    70             Boolean sampleThreads
    70             Boolean sampleThreads
    71 
    71 
    72     ) throws DCmdException {
    72     ) throws DCmdException {
       
    73         if (LogTag.JFR_DCMD.shouldLog(LogLevel.DEBUG)) {
       
    74             Logger.log(LogTag.JFR_DCMD, LogLevel.DEBUG, "Executing DCmdConfigure: repositorypath=" + repositoryPath +
       
    75                     ", dumppath=" + dumpPath +
       
    76                     ", stackdepth=" + stackDepth +
       
    77                     ", globalbuffercount=" + globalBufferCount +
       
    78                     ", globalbuffersize=" + globalBufferSize +
       
    79                     ", thread_buffer_size" + threadBufferSize +
       
    80                     ", memorysize" + memorySize +
       
    81                     ", maxchunksize=" + maxChunkSize +
       
    82                     ", samplethreads" + sampleThreads);
       
    83         }
       
    84 
       
    85 
    73         boolean updated = false;
    86         boolean updated = false;
    74         if (repositoryPath != null) {
    87         if (repositoryPath != null) {
    75             try {
    88             try {
    76                 SafePath s = new SafePath(repositoryPath);
    89                 SafePath s = new SafePath(repositoryPath);
    77                 Repository.getRepository().setBasePath(s);
    90                 Repository.getRepository().setBasePath(s);