Skip to content

Commit

Permalink
more touching up of markdown documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Allen committed Mar 28, 2009
1 parent c4f56aa commit 2a6e76f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Logv

`Logv' is a cognitively lightweight logging utility for Common Lisp
_Logv_ is a cognitively lightweight logging utility for Common Lisp

The most useful form is `LOGV`, a macro that behaves like `PROGN` except that it
writes each form and its return value to the log.
Expand Down Expand Up @@ -37,7 +37,7 @@ If the `:LOG-OUTPUT` setting is:
then things that normally write to the log don't do anything
* a _stream_
then things that write to the log write to the stream
* a _pathname designator_(a _pathname_ or a _string_): then things that write to the
* a _pathname designator_ (a _pathname_ or a _string_): then things that write to the
log write to the file pointed to by the string/pathname. the file is created if
it doesn't already exist. if there are special characters they are encoded in
UTF-8
Expand All @@ -51,7 +51,7 @@ like functions and macros. eg:
(def-log-env :my-log (:logv-macro-name my-logv
:logvs-macro-name my-logvs
:format-log-function-name my-format-log)
:log-output "/path/to/log.txt" ; optional, defaults to t
:log-output "/path/to/log.txt" ; optional, defaults to t
:log-prefix-string-factory #<function (lambda ()...>)> ; optional
)

Expand All @@ -63,4 +63,3 @@ to `LOG-SETTING`:
## License

BSD. See "license.txt"

0 comments on commit 2a6e76f

Please sign in to comment.