22 lines
		
	
	
		
			441 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			441 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| //
 | |
| // Copyright(c) 2015 Gabi Melman.
 | |
| // Distributed under the MIT License (http://opensource.org/licenses/MIT)
 | |
| //
 | |
| 
 | |
| #include "glog/logging.h"
 | |
| 
 | |
| 
 | |
| int main(int, char* argv[])
 | |
| {
 | |
|     int howmany = 1000000;
 | |
| 
 | |
| 
 | |
|     FLAGS_logtostderr = 0;
 | |
|     FLAGS_log_dir = "logs";
 | |
|     google::InitGoogleLogging(argv[0]);
 | |
|     for(int i  = 0 ; i < howmany; ++i)
 | |
|         LOG(INFO) << "glog message # " << i << ": This is some text for your pleasure";
 | |
| 
 | |
|     return 0;
 | |
| }
 |