Skip to content
Snippets Groups Projects
Commit 5d04ab44 authored by Veronique Legrand's avatar Veronique Legrand
Browse files

Added traces for debug

parent e67f42a2
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,12 @@
#include "FqBaseBackend.h"
#define DEBUG
#ifdef DEBUG
#include <iostream>
using namespace std;
#endif
void FqBaseBackend::openFile(char * ficname, unsigned char id) {
int st,s;
......@@ -54,6 +59,9 @@ void FqBaseBackend::openFile() {
err_msg+=" is already open!";
throw std::runtime_error(err_msg);
}
#ifdef DEBUG
cout<<"going to open file : "<<filename<<" id="<<f_id<<endl;
#endif
openFile(filename,f_id);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment