From: <sv...@ww...> - 2004-07-17 16:35:35
|
Author: mkrose Date: 2004-07-17 09:35:25 -0700 (Sat, 17 Jul 2004) New Revision: 1159 Modified: trunk/CSP/SimData/CHANGES.current trunk/CSP/SimData/Include/SimData/Log.i Log: Expand the python interface to LogStream to include setting the enabling point and time logging. Browse at: https://www.zerobar.net/viewcvs/viewcvs.cgi?view=rev&rev=1159 Modified: trunk/CSP/SimData/CHANGES.current =================================================================== --- trunk/CSP/SimData/CHANGES.current 2004-07-17 16:33:34 UTC (rev 1158) +++ trunk/CSP/SimData/CHANGES.current 2004-07-17 16:35:25 UTC (rev 1159) @@ -29,6 +29,9 @@ (unit test coming soon). See the header file for docs on what they do and how to use them (nb: ring queue is still under-documented). + * Expand the python interface to LogStream to include setting the + enabling point and time logging. + 2004-07-09: onsight * Changed the formating of HashT values to use fixed-width hex instead of decimal numbers, and cleaned up the data archive Modified: trunk/CSP/SimData/Include/SimData/Log.i =================================================================== --- trunk/CSP/SimData/Include/SimData/Log.i 2004-07-17 16:33:34 UTC (rev 1158) +++ trunk/CSP/SimData/Include/SimData/Log.i 2004-07-17 16:35:25 UTC (rev 1159) @@ -35,8 +35,10 @@ ~LogStream(); void _close(); void setOutput(std::string const &fn); - void setLogPriority(int p); - void setLogCategory(int c); + void setLogPriority(int); + void setLogCategory(int); + void setTimeLogging(bool); + void setPointLogging(bool); }; NAMESPACE_SIMDATA_END // namespace simdata |