I created a simple a jQuery function that is to be used for developer event and error logging... it calls a web service function that simply logs several passed parameters to a log table called EventLog.
One of the parameters (logEventStr) is just a string that qualifies the log event... like 'debug', 'error', 'user', 'info'... et cetera. I have all of these event types in another table, call it EventTypes, indexed (i.e. 1=debug, 2=info, 3=user...), and linked via foreign key constraint to an eventId column the log table.
So, during a code review it was suggested/argued that some initial checking on this log event string should be used since "a developer could possibly mistype the event type in the logEventStr parameter". I explained that I have code in the web service that checks for a valid event string and throws an exception that is handled in the failure event of the Ajax call... it even prints out the misspelled event name error to the console, so the developer would immediately know that he messed up and would correct it. Further 'discussions' stated that the indexes in EventTypes should be hard-coded (probably a JSON object) in the javascript and checked before making the web service call. This just seemed silly to me, as now the developers will have to keep up with changes in the EventTypes table and keep them manually synced with the hard-coded JSON object. I finally relented somewhat to populating the JSON object with yet another web service call that returns the contents of the EventTypes table and caches it so it would be a one-time call on first hit. I still think, however, that even this is unnecessary... the logging function is only to be used by the developer and the logEventStr will never be dictated by an end-user.
My question is... which technique is right? How much checking should be required for something as straight-forward and simple as a logging function, that is to be used exclusively by the developers?
I've mulled this about over the weekend and it still bothers me. Of course, maybe neither of these is the correct approach, so alternative ideas are welcome.