Skip to content

Commit

Permalink
简化日志
Browse files Browse the repository at this point in the history
  • Loading branch information
chivehao committed Oct 22, 2024
1 parent 9939900 commit 358e8bd
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@

# 18.1.1

- 简化日志

# 18.1.0

- 升级核心版本适配请求
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
group=run.ikaros.plugin
description=A mikan plugin for ikaros.
version=18.1.0
version=18.1.1
6 changes: 3 additions & 3 deletions src/main/java/run/ikaros/plugin/mikan/MikanSubHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -231,9 +231,9 @@ public Mono<Void> importQbittorrentFilesAndAddSubject() {
.flatMapMany(qc -> Flux.fromStream(qc.getTorrentList(QbTorrentInfoFilter.ALL,
qc.getCategory(), null, null, null, null).stream()))
.filter(qbTorrentInfo -> qbTorrentInfo.getProgress() == 1.0)
.doOnNext(qbTorrentInfo ->
log.debug("start handle single torrent for content path: {}",
qbTorrentInfo.getContentPath()))
// .doOnNext(qbTorrentInfo ->
// log.debug("start handle single torrent for content path: {}",
// qbTorrentInfo.getContentPath()))
.flatMap(qbTorrentInfo ->
importFileByHardLinkRecursively(qbTorrentInfo.getContentPath(),
DOWNLOAD_DIRECTORY_ID)
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: PluginMikan
# plugin entry class that extends BasePlugin
clazz: run.ikaros.plugin.mikan.MikanPlugin
# plugin 'version' is a valid semantic version string (see semver.org).
version: 18.1.0
version: 18.1.1
requires: ">=0.18.0"
author:
name: Ikaros OSS Team
Expand Down

0 comments on commit 358e8bd

Please sign in to comment.