Skip to content

Commit

Permalink
REMOVE THIS!
Browse files Browse the repository at this point in the history
  • Loading branch information
korydraughn committed Dec 11, 2024
1 parent 2d0c84e commit fd1dc03
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/core/src/rcMisc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include "irods/execMyRule.h"
#include "irods/exec_rule_expression.h"
#include "irods/generalAdmin.h"
#include "irods/irods_default_paths.hpp"
#include "irods/modDataObjMeta.h"
#include "irods/msParam.h"
#include "irods/objInfo.h"
Expand Down Expand Up @@ -60,6 +61,7 @@
#include "irods/Unix2Nt.hpp"
#endif

#include <fstream>
#include <cstdlib>
#include <cstdio>
#include <cstring>
Expand Down Expand Up @@ -3209,6 +3211,13 @@ int fillGenQueryInpFromStrCond( char * str, genQueryInp_t * genQueryInp )
return parse_genquery1_string(str, genQueryInp);
}

{
std::ofstream f{(irods::get_irods_home_directory() / "log/genquery1_strings.txt").generic_string(), std::ios::out | std::ios::app};
if (f) {
f << str << '\n';
}
}

int n, m;
char *p, *t, *f, *u, *a, *c;
char *s;
Expand Down

0 comments on commit fd1dc03

Please sign in to comment.