Add a sentence to the documentation that flag.Parse must be called first.
diff --git a/glog.go b/glog.go
index dbe1d65..d5e1ac2 100644
--- a/glog.go
+++ b/glog.go
@@ -37,6 +37,7 @@
 //
 // By default, all log statements write to files in a temporary directory.
 // This package provides several flags that modify this behavior.
+// As a result, flag.Parse must be called before any logging is done.
 //
 //	-logtostderr=false
 //		Logs are written to standard error instead of to files.