#!/bin/bash
#
# debug_events - just logs all commandline parameters to syslog
#
# Stefan Seyfried 
#
. ${0%/*}/helper_functions # `dirname $0`/helper_functions

ME=${0##*/} # basename $0
TAG="[$ME][$$]"
LOG="commandline arguments:"
while [ $# -gt 0 ]; do
    LOG="$LOG '$1'"
    shift
done
logger -t "$TAG" "$LOG"

$SCRIPT_RETURN $EV_ID 0 "debug_events finished"
EXIT 0
