#!/usr/bin/env bash

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