fork of Sam Grove's library

Fork of LogUtil by Sam Grove

Committer:
sam_grove
Date:
Fri Mar 29 17:36:50 2013 +0000
Revision:
0:3054bbdace4c
Child:
1:491d2a7f4207
Starting point for unified logging. Will be updated to redirect so it can be used during run time or in the field.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sam_grove 0:3054bbdace4c 1 /**
sam_grove 0:3054bbdace4c 2 * @file LogUtil.cpp
sam_grove 0:3054bbdace4c 3 * @brief Utility to log messages during runtime
sam_grove 0:3054bbdace4c 4 * @author sam grove
sam_grove 0:3054bbdace4c 5 * @version 1.0
sam_grove 0:3054bbdace4c 6 * @see http://www.drdobbs.com/cpp/a-lightweight-logger-for-c/240147505?pgno=2
sam_grove 0:3054bbdace4c 7 *
sam_grove 0:3054bbdace4c 8 * Copyright (c) 2013
sam_grove 0:3054bbdace4c 9 *
sam_grove 0:3054bbdace4c 10 * Licensed under the Apache License, Version 2.0 (the "License");
sam_grove 0:3054bbdace4c 11 * you may not use this file except in compliance with the License.
sam_grove 0:3054bbdace4c 12 * You may obtain a copy of the License at
sam_grove 0:3054bbdace4c 13 *
sam_grove 0:3054bbdace4c 14 * http://www.apache.org/licenses/LICENSE-2.0
sam_grove 0:3054bbdace4c 15 *
sam_grove 0:3054bbdace4c 16 * Unless required by applicable law or agreed to in writing, software
sam_grove 0:3054bbdace4c 17 * distributed under the License is distributed on an "AS IS" BASIS,
sam_grove 0:3054bbdace4c 18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
sam_grove 0:3054bbdace4c 19 * See the License for the specific language governing permissions and
sam_grove 0:3054bbdace4c 20 * limitations under the License.
sam_grove 0:3054bbdace4c 21 */
sam_grove 0:3054bbdace4c 22
sam_grove 0:3054bbdace4c 23 #include "LogUtil.h"
sam_grove 0:3054bbdace4c 24 #include "mbed.h"
sam_grove 0:3054bbdace4c 25
sam_grove 0:3054bbdace4c 26 LogUtil::LogUtil()
sam_grove 0:3054bbdace4c 27 {
sam_grove 0:3054bbdace4c 28 Serial debug(USBTX, USBRX);
sam_grove 0:3054bbdace4c 29 debug.baud(921600);
sam_grove 0:3054bbdace4c 30
sam_grove 0:3054bbdace4c 31 return;
sam_grove 0:3054bbdace4c 32 }
sam_grove 0:3054bbdace4c 33
sam_grove 0:3054bbdace4c 34