9 lines
		
	
	
		
			171 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			171 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include <iostream>
 | 
						|
#include "zlog.h"
 | 
						|
int main() {
 | 
						|
    zlog::info("hello info");
 | 
						|
    zlog::warn("hello {}", "warn");
 | 
						|
    zlog::error("hello {}", "error");
 | 
						|
    return 0;
 | 
						|
}
 |