We implemented tiny and good library that makes communication with Smartling transparent. But end-developer doesn't have ability to research issues if communication doesn't work. We should add logging capability to our library.
DoD:
Logger {
abstract public function debug($message, $throwable = null);
abstract public function info($message, $throwable = null);
abstract public function warn($message, $throwable = null);
abstract public function error($message, $throwable = null);
abstract public function fatal($message, $throwable = null);
}
We implemented tiny and good library that makes communication with Smartling transparent. But end-developer doesn't have ability to research issues if communication doesn't work. We should add logging capability to our library.
DoD:
monologorlog4php). End developer should provide logger implementation by yourself if he wants.Logger { abstract public function debug($message, $throwable = null); abstract public function info($message, $throwable = null); abstract public function warn($message, $throwable = null); abstract public function error($message, $throwable = null); abstract public function fatal($message, $throwable = null); }