summaryrefslogtreecommitdiff
path: root/README-goreadme.md
diff options
context:
space:
mode:
Diffstat (limited to 'README-goreadme.md')
-rw-r--r--README-goreadme.md38
1 files changed, 2 insertions, 36 deletions
diff --git a/README-goreadme.md b/README-goreadme.md
index 6177226..9dc4369 100644
--- a/README-goreadme.md
+++ b/README-goreadme.md
@@ -107,42 +107,6 @@ external things which might be useful
* [GO Style Guide]
```
-version v1.3
-
-I like things to be easy.
-
-this means all the log settings are in one place. it should allow
-things to be over-ridden externally to the library
-but still allow command line --args to pass debugging settings
-
-## I also have a generic sleep() and exit() in here because it's simple
-
-Usage:
-
-log("something", foo, bar)
-var DEBUG bool = true
-log(DEBUG, "something else", someOtherVariable) # if DEBUG == false, return doing nothing
-log(SPEW, "something else", someOtherVariable) # this get's sent to spew.Dump(). Very useful for debugging!
-
-## Variables
-
-```golang
-var INFO bool
-```
-
-```golang
-var LOGOFF bool = false // turn this off, all logging stops
-
-```
-
-```golang
-var SPEW spewt
-```
-
-```golang
-var WARN bool
-```
-
## Functions
### func [DebugWidgetWindow](/debugWidget.go#L52)
@@ -293,6 +257,8 @@ You get a window
## Sub Packages
+* [log](./log)
+
* [toolkit](./toolkit)
---