1
0
mirror of https://github.com/Prowlarr/Indexers.git synced 2026-05-08 08:58:39 +01:00

script: log smarter

This commit is contained in:
bakerboy448
2024-07-06 02:13:28 -05:00
committed by GitHub
parent b6475b4689
commit 43a84bb1dd
+20 -5
View File
@@ -306,7 +306,7 @@ pull_cherry_and_merge() {
log "INFO" "most recent Prowlarr jackett commit is: [$recent_pulled_commit] from [$prowlarr_remote_name/$prowlarr_target_branch]" log "INFO" "most recent Prowlarr jackett commit is: [$recent_pulled_commit] from [$prowlarr_remote_name/$prowlarr_target_branch]"
if [ "$jackett_recent_commit" = "$recent_pulled_commit" ]; then if [ "$jackett_recent_commit" = "$recent_pulled_commit" ]; then
log "INFO" "we are current with jackett; nothing to do" log "SUCCESS" "we are current with jackett; nothing to do"
exit 0 exit 0
fi fi
@@ -557,10 +557,25 @@ cleanup_and_commit() {
unset indexer_remove unset indexer_remove
fi fi
log "SUCCESS" "Added Indexers are [$added_indexers]" # Check if there are added indexers and log if present
log "SUCCESS" "Modified Indexers are [$modified_indexers]" if [ -n "$added_indexers" ]; then
log "SUCCESS" "Removed Indexers are [$removed_indexers]" log "SUCCESS" "Added Indexers are [$added_indexers]"
log "WARN" "New Schema Indexers are [$newschema_indexers]" fi
# Check if there are modified indexers and log if present
if [ -n "$modified_indexers" ]; then
log "SUCCESS" "Modified Indexers are [$modified_indexers]"
fi
# Check if there are removed indexers and log if present
if [ -n "$removed_indexers" ]; then
log "SUCCESS" "Removed Indexers are [$removed_indexers]"
fi
# Check if there are new schema indexers and log if present
if [ -n "$newschema_indexers" ]; then
log "WARN" "New Schema Indexers are [$newschema_indexers]"
fi
if [ -d "$NEW_VERS_DIR" ]; then if [ -d "$NEW_VERS_DIR" ]; then
if [ "$(ls -A $NEW_VERS_DIR)" ]; then if [ "$(ls -A $NEW_VERS_DIR)" ]; then