thank you for this first reply.
Well, yes, i tested again using command line calls to caffe and log works fine (thank you for your additional hint).
however, how to get log when caffe is called from python
when calling :
solver = caffe.SGDSolver(solver_train_pathname)
solver.solve()
In this configuration,
_How to collect the global log at the end of the solving process (as with the command line call when getting file pointed by /tmp/caffe.INFO)
_And also how to collect log in real time during the solving process (i guess one should replace the automatic "solve" method by several "run_forward" and "run_backward" if so how and is there another way using the solve method ?)
Thanks for help.