Hello,
Thanks for releasing golang/glog. When using the --log_dir flag with a relative path, such as:
$ ./bin/index --log_dir=out/log
The helper symlinks (eg: *.INFO) are created incorrectly. For example:
$ ls -l out/log/index.*
-rw-r--r-- 1 ahochhaus ahochhaus 820851 Jul 18 16:02 out/log/index.ahochhaus-pc.ahochhaus.log.INFO.20130718-160008.30243
lrwxrwxrwx 1 ahochhaus ahochhaus 67 Jul 18 16:00 out/log/index.INFO -> out/log/index.ahochhaus-pc.ahochhaus.log.INFO.20130718-160008.30243
To resolve correctly, the symlink should not include the relative path but only the file name (as the symlink itself and the file being linked to are in the same directory).
Thanks,
-Andy