blob: 13c49cebd1462420c650c9223c8fc5272805587a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
#pragma once
#include <sstream>
#include <winsock2.h>
class Logger {
public:
static void error(char* message);
static void error(char* message, int errorCode);
static void log(char* message);
static void log(wchar_t* message);
static void log(std::wstring* message);
protected:
Logger();
~Logger();
};