mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 08:27:12 -07:00
Log.
This commit is contained in:
parent
a493cbc11e
commit
3da2b70558
2 changed files with 4 additions and 3 deletions
|
@ -91,7 +91,7 @@ class JarGenerator @Inject constructor(val dependencyManager: DependencyManager)
|
|||
// If fatJar is true, add all the transitive dependencies as well: compile, runtime and dependent projects
|
||||
//
|
||||
if (jar.fatJar) {
|
||||
log(2, "Creating fat jar")
|
||||
log(2, "Finding included files for far jar")
|
||||
|
||||
val seen = hashSetOf<String>()
|
||||
@Suppress("UNCHECKED_CAST")
|
||||
|
|
|
@ -126,7 +126,8 @@ class IncrementalManager @Inject constructor(val args: Args, @Assisted val fileN
|
|||
if (outputChecksum == taskOutputChecksum) {
|
||||
upToDate = true
|
||||
} else {
|
||||
logIncremental(LEVEL, "Incremental task $taskName output is out of date, running it")
|
||||
logIncremental(LEVEL, "Incremental task $taskName output is out of date" +
|
||||
" (different output checksums), running it")
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
@ -134,7 +135,7 @@ class IncrementalManager @Inject constructor(val args: Args, @Assisted val fileN
|
|||
logIncremental(LEVEL, "Project ${project.name} depends on dirty project, running $taskName")
|
||||
} else {
|
||||
logIncremental(LEVEL, "Incremental task $taskName input is out of date, running it"
|
||||
+ " old: $inputChecksum new: ${iti.inputChecksum()}")
|
||||
+ " (different input checksums old: $inputChecksum new: ${iti.inputChecksum()})")
|
||||
}
|
||||
project.projectExtra.isDirty = true
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue