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
|
;;; Logs
|
||||||
;;;
|
;;;
|
||||||
;;; First define the log categories
|
;;; First define the log categories
|
||||||
(defcategory :critical)
|
(defcategory :panic)
|
||||||
(defcategory :log (or :log :critical))
|
(defcategory :fatal (or :fatal :panic))
|
||||||
|
(defcategory :log (or :log :fatal))
|
||||||
(defcategory :error (or :error :log))
|
(defcategory :error (or :error :log))
|
||||||
(defcategory :warning (or :warning :error))
|
(defcategory :warning (or :warning :error))
|
||||||
(defcategory :notice (or :notice :warning))
|
(defcategory :notice (or :notice :warning))
|
||||||
@ -290,6 +291,8 @@
|
|||||||
&key before finally parallel)
|
&key before finally parallel)
|
||||||
"Report the full story when given three different sections of reporting."
|
"Report the full story when given three different sections of reporting."
|
||||||
|
|
||||||
|
(terpri)
|
||||||
|
|
||||||
;; BEFORE
|
;; BEFORE
|
||||||
(if before
|
(if before
|
||||||
(progn
|
(progn
|
||||||
|
Loading…
Reference in New Issue
Block a user