Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Antoine Martin
quickref
Commits
37843f6b
Commit
37843f6b
authored
Oct 24, 2017
by
Antoine Martin
Browse files
Revert "Add logging during build of quicklisp releases"
This reverts commit
6f75a317
.
parent
9034b4eb
Changes
1
Hide whitespace changes
Inline
Side-by-side
map-declt.lisp
View file @
37843f6b
...
@@ -3,18 +3,12 @@
...
@@ -3,18 +3,12 @@
(
ql:quickload
"quickref"
)
(
ql:quickload
"quickref"
)
(
ql:quickload
"net.didierverna.declt"
)
(
ql:quickload
"net.didierverna.declt"
)
(
defun
log-condition
(
c
)
(
with-open-file
(
file
(
quickref::from-homedir
(
format
nil
"declt-logfiles/~A.log"
cl-user::*qlmapper-object-name*
))
:direction
:output
:if-does-not-exist
:create
)
(
format
file
"~A~%"
c
)))
(
let
((
primary-system
(
let
((
primary-system
(
quickref:get-primary-system-name
cl-user::*qlmapper-object-name*
)))
(
quickref:get-primary-system-name
cl-user::*qlmapper-object-name*
)))
;; #### TODO: encapsulate this into an error catching form.
(
format
t
"STARTED BUILDING PACKAGE ~A~%"
primary-system
)
(
format
t
"STARTED BUILDING PACKAGE ~A~%"
primary-system
)
(
handler-case
(
net.didierverna.declt:declt
primary-system
(
ql:quickload
primary-system
)
:library
cl-user::*qlmapper-object-name*
)
;; #### TODO: See about providing more information to the DECLT call.
(
error
(
c
)
(
log-condition
c
)))
(
net.didierverna.declt:declt
primary-system
:library
cl-user::*qlmapper-object-name*
)
(
format
t
"FINISHED BUILDING PACKAGE ~A~%"
primary-system
))
(
format
t
"FINISHED BUILDING PACKAGE ~A~%"
primary-system
))
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment