Skip to content

Commit c148644

Browse files
committed
Decreased log level
1 parent 348f2bf commit c148644

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

src/main/groovy/nextflow/script/BaseScript.groovy

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ abstract class BaseScript extends Script {
236236
* @param taskConfig
237237
*/
238238
private getExecutorConfig(Map taskConfig) {
239-
log.debug ">> taskConfig $taskConfig"
239+
log.trace ">> taskConfig $taskConfig"
240240

241241
// create the processor object
242242
def result = taskConfig.executor?.toString()
@@ -257,7 +257,7 @@ abstract class BaseScript extends Script {
257257
log.warn "Note: configuration attribute 'processor' has been deprecated -- replace it by using the attribute 'executor' in the 'nextflow.conf' file"
258258
}
259259

260-
log.debug "<< taskConfig result: $result"
260+
log.debug "<< taskConfig executor: $result"
261261
return result
262262
}
263263

@@ -274,18 +274,6 @@ abstract class BaseScript extends Script {
274274
}
275275

276276

277-
278-
// def process(Map<String,?> args, String name ) {
279-
// log.debug "Create task: $name with: $args"
280-
// task(name, { return '' })
281-
// }
282-
283-
// def process(String name ) {
284-
// log.debug "Create task: $name "
285-
// task(name, { return '' })
286-
// }
287-
288-
289277
/*
290278
* Map the executor class to its 'friendly' name
291279
*/

0 commit comments

Comments
 (0)