Error as described in MBs email to MS

Dependencies:   SDFileSystem app epson mbed msp430 pl tests

log.cpp

Committer:
marcbax
Date:
2018-01-11
Revision:
1:5874c1a074a7
Parent:
0:c643d398cdb6

File content as of revision 1:5874c1a074a7:

//
// Filename: log.cpp
//
// Diagnostic logger.
//

#include "log.h"

#include <stdio.h>

void Log(const std::string &data)
{
    printf("%s\n", data.c_str());
}