Don't log added aircraft.

This commit is contained in:
John Wiseman 2020-08-03 09:37:31 -07:00
parent 31cfd0a893
commit 324bc6898d
1 changed files with 4 additions and 4 deletions

View File

@ -168,10 +168,10 @@
updated-db (reduce update-history-db-record db new-data)
new-count (count updated-db)
new-icaos (set/difference (set (keys updated-db)) initial-icaos)]
(log-info "Added %s new aircraft records (%s). %s total."
(- new-count initial-count)
(string/join "," new-icaos)
new-count)
(log-verbose "Added %s new aircraft records (%s). %s total."
(- new-count initial-count)
(string/join "," new-icaos)
new-count)
updated-db))