FlexBook / Mbed 2 deprecated FlexBook171204a

Dependencies:   SDFileSystem app epson mbed msp430 pl tests

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers log.cpp Source File

log.cpp

00001 //
00002 // Filename: log.cpp
00003 //
00004 // Diagnostic logger.
00005 //
00006 
00007 #include "log.h"
00008 
00009 #include <stdio.h>
00010 
00011 void Log(const std::string &data)
00012 {
00013     printf("%s\n", data.c_str());
00014 }