I couldn't find a place to change the log file location in the UI. I was able to find where they were set in the config files.
(This was a problem for me, because my the default writes to documents which I keep synced with OneDrive)
I wrote this script and executed and LinqPad, to point the logs to a temp directory. I thought I'd share in case anyone else ran into the same problem.
Any chance this could be added to the UI, so I don't have to re-run the script after updates,etc?
var regex = @(\$\{specialfolder:folder=MyDocuments:dir=Proclaim\sLog\sFiles\})\\([\w\.]*log);
new DirectoryInfo($@{Environment.GetFolderPath(Environment.SpecialFolder.UserProfile)}\AppData\Local\Proclaim)
.GetFiles("*.config", SearchOption.AllDirectories)
.Select(fi=> new {FileInfo = fi, Text = Regex.Replace(File.ReadAllText(fi.FullName), regex, @c:\temp\Proclaim\$2)})
.ToList()
.ForEach(x=>File.WriteAllText(x.FileInfo.FullName, x.Text));