Skip to content

Commit

Permalink
logging update
Browse files Browse the repository at this point in the history
  • Loading branch information
memo committed Sep 3, 2017
1 parent 7866677 commit fe03592
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ofxMSATFUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ vector<string> get_file_list(string model_dir, int max_count, string ext, bool d
for(int i=0; i<max_count; i++) {
int index = round(ofMap(i, 0, max_count-1, 0, count-1));
new_filenames.push_back(filenames[index]);
ofLogVerbose() << i << " -> " << index << " : " << new_filenames.back();
ofLogVerbose("ofxMSATensorFlow") << i << " -> " << index << " : " << new_filenames.back();
}
filenames = new_filenames;
std::reverse(filenames.begin(),filenames.end());
Expand Down

0 comments on commit fe03592

Please sign in to comment.