mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-11-03 21:20:31 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			799 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			799 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/**
 | 
						|
  @file
 | 
						|
  @author Stefan Frings
 | 
						|
*/
 | 
						|
 | 
						|
#include "dualfilelogger.h"
 | 
						|
 | 
						|
using namespace qtwebapp;
 | 
						|
 | 
						|
DualFileLogger::DualFileLogger(QSettings* firstSettings, QSettings* secondSettings, const int refreshInterval, QObject* parent)
 | 
						|
    :Logger(parent)
 | 
						|
{
 | 
						|
     firstLogger=new FileLogger(firstSettings, refreshInterval, this);
 | 
						|
     secondLogger=new FileLogger(secondSettings, refreshInterval, this);
 | 
						|
}
 | 
						|
 | 
						|
void DualFileLogger::log(const QtMsgType type, const QString& message, const QString &file, const QString &function, const int line)
 | 
						|
{
 | 
						|
    firstLogger->log(type,message,file,function,line);
 | 
						|
    secondLogger->log(type,message,file,function,line);
 | 
						|
}
 | 
						|
 | 
						|
void DualFileLogger::clear(const bool buffer, const bool variables)
 | 
						|
{
 | 
						|
    firstLogger->clear(buffer,variables);
 | 
						|
    secondLogger->clear(buffer,variables);
 | 
						|
}
 |