Reverse line order in Log(View)
[nomnom.git] / src / Log.cpp
blobe92bf34b1a55b7f6f60703cbb5fafaa92454d81d
1 /*
2 * Copyright (C) 2010 Toni Gundogdu.
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 #include <QDateTime>
19 #include <QDebug>
21 #include "Log.h"
23 Log::Log () { }
24 Log::~Log () { }
26 Log&
27 Log::operator<<(const QString& s)
29 if (s.simplified ().isEmpty ())
30 return *this;
32 if (_data.length () > 32*1024)
33 _data.clear ();
35 QDateTime dt = QDateTime::currentDateTime ();
37 _data += dt.toString ("hh:mm:ss: ") + s;
39 if (!s.endsWith ("\n"))
40 _data += "\n";
42 return *this;
45 const QString& Log::data () const
47 return _data;
49 void Log::clear ()
51 _data.clear ();
54 // vim: set ts=2 sw=2 tw=72 expandtab: