Index: /trunk/psModules/src/concepts/pmConceptsStandard.c
===================================================================
--- /trunk/psModules/src/concepts/pmConceptsStandard.c	(revision 7410)
+++ /trunk/psModules/src/concepts/pmConceptsStandard.c	(revision 7411)
@@ -334,11 +334,11 @@
     psMetadata *formats = psMetadataLookupMD(&mdok, cameraFormat, "FORMATS");
     if (!mdok || !formats) {
-        psError(PS_ERR_UNKNOWN, false, "Unable to find FORMATS in camera configuration.\n");
+        psError(PS_ERR_UNKNOWN, true, "Unable to find FORMATS in camera configuration.\n");
         return NULL;
     }
 
     psString timeFormat = psMetadataLookupStr(&mdok, formats, "CELL.TIME");
-    if (!mdok || !timeFormat || !strlen(timeFormat)) {
-        psError(PS_ERR_UNKNOWN, false, "Unable to find CELL.TIME in FORMATS.\n");
+    if (!mdok || strlen(timeFormat) == 0) {
+        psError(PS_ERR_UNKNOWN, true, "Unable to find CELL.TIME in FORMATS.\n");
         return NULL;
     }
@@ -371,6 +371,6 @@
             usaTime = false;
         } else {
-            psLogMsg(__func__, PS_LOG_WARN, "Unrecognised FORMATS option for CELL.TIME: %s --- "
-                     "ignored.\n", timeFormat);
+            psError(PS_ERR_UNKNOWN, true, "Unrecognised FORMATS option for CELL.TIME: %s --- "
+                    "ignored.\n", timeFormat);
             psFree(timeFormatsIter);
             psFree(timeFormats);
