#!/usr/bin/env bash

if [ -z "$@" ]; then
  while read str; do
    tamarin_log DEBUG "${str}"
  done
else
  tamarin_log DEBUG "$@"
fi