Skip to content

Commit 6e4f410

Browse files
committed
Remove println
1 parent d370ca0 commit 6e4f410

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/main/java/dev/loudbook/githubyoinker/Downloader.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class Downloader(private val configuration: Configuration, private val githubPat
2626
.filter { jsonElement: JsonElement -> jsonElement.asJsonObject["repo"].asString == githubPath }.findFirst()
2727
.orElse(null)
2828

29-
Logger.debug("Initiating pre download for $githubPath")
29+
Logger.debug("Initiating pre download for $githubPath. Running on thread ${Thread.currentThread().name}")
3030

3131
if (element == null) {
3232
Logger.error("Element is null for $githubPath")

src/main/java/dev/loudbook/githubyoinker/GithubYoinker.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ class GithubYoinker {
2828
coroutineScope {
2929
for (jsonElement in array) {
3030
val job = async(Dispatchers.IO) {
31-
println(Thread.currentThread().name)
3231
Downloader(
3332
configuration,
3433
jsonElement.asJsonObject["repo"].asString,

0 commit comments

Comments
 (0)