File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ PluginRegistry::GetPluginLoadDirectories() const {
140
140
void PluginRegistry::AppendPluginLoadDirectory (
141
141
const std::filesystem::path &path) {
142
142
if (!std::filesystem::is_directory (path)) {
143
- LOG_ERROR (" Path " << path. c_str () << " is not a directory." );
143
+ LOG_ERROR (" Path " << path << " is not a directory." );
144
144
return ;
145
145
}
146
146
if (HasPluginLoadDirectory (path)) {
@@ -160,7 +160,7 @@ bool PluginRegistry::HasPluginLoadDirectory(const std::filesystem::path &path) {
160
160
void PluginRegistry::PrependPluginLoadDirectory (
161
161
const std::filesystem::path &path) {
162
162
if (!std::filesystem::is_directory (path)) {
163
- LOG_ERROR (" Path " << path. c_str () << " is not a directory." );
163
+ LOG_ERROR (" Path " << path << " is not a directory." );
164
164
return ;
165
165
}
166
166
if (HasPluginLoadDirectory (path)) {
You can’t perform that action at this time.
0 commit comments