We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 426edb5 commit ec4ebedCopy full SHA for ec4ebed
Eradication/LoadBalanceScheme.cpp
@@ -249,12 +249,12 @@ namespace Kernel
249
IInitialLoadBalanceScheme* p_lbs = nullptr ;
250
if( extension == "json" )
251
{
252
- LOG_INFO_F("Using Json Load Balance Scheme from file: %s.\n", rFilename);
+ LOG_INFO_F("Using Json Load Balance Scheme from file: %s.\n", rFilename.c_str());
253
p_lbs = new JsonInitialLoadBalanceScheme();
254
}
255
else if( !rFilename.empty() && FileSystem::FileExists( rFilename ) )
256
257
- LOG_INFO_F("Using Legacy Load Balance Scheme from file: %s.\n", rFilename);
+ LOG_INFO_F("Using Legacy Load Balance Scheme from file: %s.\n", rFilename.c_str());
258
p_lbs = new LegacyFileInitialLoadBalanceScheme();
259
260
else
0 commit comments