<?php

class TLog {

    static function log($texto) {
        echo "[".date(DATE_ATOM)."] $texto\n";
    }

}