New issue 70 by jh...@google.com: "Setting Flags" section should explicitly
mention FLAGS_ prefix
http://code.google.com/p/google-glog/issues/detail?id=70
In this doc: http://google-glog.googlecode.com/svn/trunk/doc/glog.html
The "Setting Flags" section tells how to change settings like "logtostderr"
from the command line or environment variables, but not from within the
code itself. If I didn't already know about gflags, I wouldn't have known
to write this in my C++ code:
FLAGS_logtostderr = true;
Please update the doc to give explicit examples of how to change these
settings from the code (and mention whether they should happen before or
after InitGoogleLogging).