Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d43a953ba4f55774ddac44b023fa0fe5594939cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*******************************************************************************
 * Copyright (c) 2011 protos software gmbh (http://www.protos.de).
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * CONTRIBUTORS:
 * 		Thomas Schuetz (initial contribution)
 *
 *******************************************************************************/

/*
 * etLogger.c
 *
 *  Created on: 16.01.2012
 *      Author: tschuetz
 */


#include "debugging/etLogger.h"

#include <stdarg.h>


void etLogger_logError(const char* message){
	printf("ERROR:   %s\n", message);
}

void etLogger_logWarning(const char* message){
	printf("WARNING: %s\n", message);
}

void etLogger_logInfo(const char* message){
	printf("INFO:    %s\n", message);
}

void etLogger_logErrorF(const char* format, ... ){
	printf("ERROR:   ");
	va_list arglist;
	va_start( arglist, format );
	vprintf( format, arglist );
	va_end( arglist );
	printf("\n");
}

void etLogger_logWarningF(const char* format, ... ){
	printf("WARNING: ");
	va_list arglist;
	va_start( arglist, format );
	vprintf( format, arglist );
	va_end( arglist );
	printf("\n");
}

void etLogger_logInfoF(const char* format, ... ){
	printf("INFO:    ");
	va_list arglist;
	va_start( arglist, format );
	vprintf( format, arglist );
	va_end( arglist );
	printf("\n");
}

etFileHandle etLogger_fopen(const char* filename, const char* mode){
	return( fopen(filename, mode) );
}

int etLogger_fclose(etFileHandle file){
	return( fclose(file) );
}

void etLogger_fprintf(etFileHandle file, const char* format, ... ){
	va_list arglist;
	va_start( arglist, format );
	vfprintf(file, format, arglist );
	va_end( arglist );
}

Back to the top