mirror of
https://github.com/dimitri/pgloader.git
synced 2025-08-09 07:47:00 +02:00
Review critical log levels and use FATAL and PANIC as in PostgreSQL.
This commit is contained in:
parent
a6c5bc9811
commit
eb468f92fd
@ -7,8 +7,9 @@
|
||||
;;; Logs
|
||||
;;;
|
||||
;;; First define the log categories
|
||||
(defcategory :critical)
|
||||
(defcategory :log (or :log :critical))
|
||||
(defcategory :panic)
|
||||
(defcategory :fatal (or :fatal :panic))
|
||||
(defcategory :log (or :log :fatal))
|
||||
(defcategory :error (or :error :log))
|
||||
(defcategory :warning (or :warning :error))
|
||||
(defcategory :notice (or :notice :warning))
|
||||
@ -290,6 +291,8 @@
|
||||
&key before finally parallel)
|
||||
"Report the full story when given three different sections of reporting."
|
||||
|
||||
(terpri)
|
||||
|
||||
;; BEFORE
|
||||
(if before
|
||||
(progn
|
||||
|
Loading…
Reference in New Issue
Block a user