mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-02 14:16:16 -04:00
Removed some std::ostringstream.
To be continued. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5097 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
3b85873313
commit
545743ad77
17 changed files with 506 additions and 947 deletions
|
@ -191,7 +191,7 @@ int locked_getZoneLevel(int zone)
|
|||
return it -> second;
|
||||
}
|
||||
|
||||
int rslog(unsigned int lvl, int zone, std::string msg)
|
||||
int rslog(unsigned int lvl, int zone, const std::string &msg)
|
||||
{
|
||||
RsStackMutex stack(logMtx); /******** LOCKED ****************/
|
||||
if ((signed) lvl <= locked_getZoneLevel(zone))
|
||||
|
|
|
@ -49,7 +49,7 @@ int clearDebugCrashLog();
|
|||
int setDebugFile(const char *fname);
|
||||
int setOutputLevel(int lvl);
|
||||
int setZoneLevel(int lvl, int zone);
|
||||
int rslog(unsigned int lvl, int zone, std::string msg);
|
||||
int rslog(unsigned int lvl, int zone, const std::string &msg);
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue