Is there a standard way in JuMP to log stdoutput of a solver to a file?
I tried the trick with
TT = STDOUT
(outRead, outWrite) = redirect_stdout()
solve(m)
close(outWrite)
data = readavailable(outRead)
close(outRead)
redirect_stdout(TT);
however this doesn’t work in jupyter (it seems to work in console)