• R/O
  • SSH

p36-log: 提交

P36-Log is a simple logging library for Common Lisp. Logging and
Debug Logging are conceptually separate in this library.


Commit MetaInfo

修订版6a9dd3c66f7d2b89be96e73e560b55ff7cc64b04 (tree)
时间2019-07-19 10:14:21
作者Alexa Jones-Gonzales <dj.haruko@gmai...>
CommiterAlexa Jones-Gonzales

Log Message

Updated to work with the recent p36-lib work

更改概述

差异

diff -r d5034b0bb1fe -r 6a9dd3c66f7d src/simple-logging.lisp
--- a/src/simple-logging.lisp Fri Jun 21 18:05:15 2019 -0600
+++ b/src/simple-logging.lisp Thu Jul 18 19:14:21 2019 -0600
@@ -33,7 +33,7 @@
3333 (defparameter *simple-header/error* "Error"
3434 "The header for error messages printed using the Simple Logging API.")
3535
36-(declaim (type p36:t/ansi-simple-color *simple-color/info* *simple-color/warn*
36+(declaim (type p36-ansi:t/ansi-simple-color *simple-color/info* *simple-color/warn*
3737 *simple-color/error*))
3838
3939 (defparameter *simple-color/info* :cyan
@@ -63,7 +63,7 @@
6363 `(progn
6464 (if *simple/no-color*
6565 (format ,stream "[~a]" ,header)
66- (p36:ansi/format-colored (,stream ,color) "[~a]" ,header))
66+ (p36-ansi:ansi/format-colored (,stream ,color) "[~a]" ,header))
6767 (format ,stream ": ")
6868 (format ,stream ,msg ,@fmt-args)
6969
Show on old repository browser