Nice find. Thanks. I’ll commit
this change.
Scott
From: repro-devel-bounces list.sipfoundry.org
[mailto:repro-devel-bounces list.sipfoundry.org] On Behalf Of zhx.eric
Sent: Tuesday, April 11, 2006 8:10
AM
To:
repro-devel list.sipfoundry.org
Subject: [repro-devel] about path
Hi all,
I found in
repro8217;s log, there is too verbose file path, such as
“d:\projects\resiprocate-main\repro\Debug\repro.exe̶1;, it
prints all full path in log, of course it’s windows platform, So I
suggestion to make following modification. In file Log.cxx line 113 – 116
pb.skipBackToChar('/');
change them to following
#ifdef _WIN32
pb.skipBackToChar('\\');
#else
Pb.skipBackToChar(216;/’;);
#endif
|