Skip to content

Commit 67f29fb

Browse files
authored
Update baseProject.cpp
remove debugging printouts
1 parent c56217c commit 67f29fb

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

commandLine/src/projects/baseProject.cpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -151,17 +151,10 @@ bool baseProject::create(const fs::path & path, string templateName){
151151
bool bDoesDirExist = false;
152152

153153
fs::path project { projectDir / "src" };
154-
fs::path projectAltPath { projectPath / "src" };
155-
156-
ofLogNotice() << "DEBUG 1 - src folder path is " << project;
157-
ofLogNotice() << "DEBUG 2 - src folder path should be? " << projectAltPath;
158154

159155
if (fs::exists(project) && fs::is_directory(project)) {
160156
bDoesDirExist = true;
161157
} else {
162-
ofLogNotice() << "DEBUG 3 - src folder path does not exist " << project;
163-
ofLogNotice() << "DEBUG 4 - does projectAltPath path exist? " << fs::exists(projectAltPath);
164-
165158
for (auto & p : { string("src") , string("bin") }) {
166159
fs::copy (templatePath / p, projectDir / p, fs::copy_options::recursive);
167160
}

0 commit comments

Comments
 (0)