Skip to content

Commit

Permalink
ChatON:Show Log on screen when template is applied
Browse files Browse the repository at this point in the history
  • Loading branch information
hanishkvc committed Apr 27, 2024
1 parent d667ad0 commit 30efa0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/chaton.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ inline bool chaton_tmpl_apply_single_ex(
LOG_TEELN("DBUG:%s:Mismatch between CP[%s] and SS[%s]", __func__, cpStr.c_str(), tagged.c_str());
exit(2);
}
LOGLN("DBUG:%s:%s:%s:%s", __func__, tmpl.c_str(), role.c_str(), tagged.c_str());
LOGXLN("DBUG:%s:%s:%s:%s", __func__, tmpl.c_str(), role.c_str(), tagged.c_str());
types = cp.get_types();
lens = cp.get_partslens();
return true;
Expand Down Expand Up @@ -383,7 +383,7 @@ inline bool chaton_tmpl_apply_ex(
LOG_TEELN("DBUG:%s:Mismatch between CP[%s] and SS[%s]", __func__, cpStr.c_str(), tagged.c_str());
exit(2);
}
LOGLN("DBUG:%s:%s:%s", __func__, tmpl.c_str(), tagged.c_str());
LOGXLN("DBUG:%s:%s:%s", __func__, tmpl.c_str(), tagged.c_str());
LOGLN("DBUG:%s:%s:CntSys[%d]:CntUsr[%d]:CntOthers[%d]", __func__, tmpl.c_str(), cntSystem, cntUser, cntOthers);
types = cp.get_types();
lens = cp.get_partslens();
Expand Down

0 comments on commit 30efa0b

Please sign in to comment.