We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d0bb6d commit 7693690Copy full SHA for 7693690
1 file changed
src/pointcloudToLod/pointcloudToLod.cpp
@@ -78,11 +78,13 @@ namespace seed
78
// check output
79
if (osgDB::makeDirectory(output) == false)
80
{
81
+ seed::log::DumpLog(seed::log::Critical, "Make directory %s failed!", output.c_str());
82
return false;
83
}
84
std::string filePathData = output + "/Data";
85
if (osgDB::makeDirectory(filePathData) == false)
86
87
+ seed::log::DumpLog(seed::log::Critical, "Make directory %s failed!", filePathData.c_str());
88
89
90
@@ -103,6 +105,7 @@ namespace seed
103
105
std::string tilePath = filePathData + "/" + tileName;
104
106
if (osgDB::makeDirectory(tilePath) == false)
107
108
+ seed::log::DumpLog(seed::log::Critical, "Make directory %s failed!", tilePath.c_str());
109
110
111
0 commit comments