USRP_Server  2.0
A flexible, GPU-accelerated radio-frequency readout software.
USRP_server_console_print.cpp
Go to the documentation of this file.
2 
3 
4 void print_error(std::string text){
5  std::cout<<std::endl << "\033[1;31mERROR\033[0m: "<< text<<std::endl;
6 }
7 
8 void print_warning(std::string text){
9  std::cout << "\033[40;1;33mWARNING\033[0m: "<< text<<std::endl;
10 }
11 
12 void print_debug(std::string text, double value){
13  std::cout << "\033[40;1;34mDEBUG\033[0m: "<< text<< " " <<value<<std::endl;
14 }
void print_error(std::string text)
void print_debug(std::string text, double value)
void print_warning(std::string text)