Changeset 3926 for branches/pap_branch_050513/psLib/src/sys/psLogMsg.c
- Timestamp:
- May 13, 2005, 11:40:21 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/pap_branch_050513/psLib/src/sys/psLogMsg.c
r3476 r3926 11 11 * @author George Gusciora, MHPCC 12 12 * 13 * @version $Revision: 1.39 $ $Name: not supported by cvs2svn $14 * @date $Date: 2005-0 3-22 21:52:49$13 * @version $Revision: 1.39.8.1 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2005-05-13 21:40:21 $ 15 15 * 16 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 173 173 NULL. 174 174 *****************************************************************************/ 175 voidpsLogSetFormat(const char *fmt)175 bool psLogSetFormat(const char *fmt) 176 176 { 177 177 // assume nothing desired unless specified … … 184 184 // if fmt is NULL, no logging is desired. 185 185 if (fmt == NULL) { 186 return ;186 return true; // No problems encountered in parsing 187 187 } 188 188 … … 224 224 if (!logMsg) { 225 225 psTrace("utils.logMsg", 1, "You must at least log error messages (You chose \"%s\")", fmt); 226 } 226 return false; 227 } 228 229 return true; // No problems 227 230 } 228 231
Note:
See TracChangeset
for help on using the changeset viewer.
