#include "ta_logger.h"

void print_banner(const char *taName, const char *taVersion){
     LOG_Raw("################################################################");
     LOG_Raw("###    %s-%s", taName, taVersion);
     LOG_Raw("### Build time: %s-%s, built by %s", __DATE__, __TIME__, __USER__);
 #ifdef __CHIPSET__
     LOG_Raw("### CHIPSET = %s", __CHIPSET__);
 #endif
 #ifdef __COMMIT_SHA1__
     LOG_Raw("### COMMIT_SHA1 = %s", __COMMIT_SHA1__);
 #endif
     LOG_Raw("################################################################");
}
