mastodonpp/src/log.hpp

55 lines
1.5 KiB
C++
Raw Normal View History

2020-01-05 11:06:29 +01:00
/* This file is part of mastodonpp.
* Copyright © 2020 tastytea <tastytea@tastytea.de>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MASTODONPP_LOG_HPP
#define MASTODONPP_LOG_HPP
#include <iostream>
#include <string_view>
2020-01-05 11:06:29 +01:00
namespace mastodonpp
{
using std::cerr;
using std::string_view;
2020-01-06 10:03:18 +01:00
//! @private
constexpr auto shorten_filename(const string_view &filename)
{
for (const string_view &dir : {"/src/", "/include/"})
{
auto pos{filename.rfind("/src/")};
if (pos != string_view::npos)
{
return filename.substr(pos + dir.size());
}
}
return filename;
}
2020-01-05 11:06:29 +01:00
2020-01-05 20:39:05 +01:00
#define commonlog cerr << '[' << shorten_filename(__FILE__) \
<< ':' << __LINE__ << ']'
2020-01-05 11:06:29 +01:00
#ifndef NDEBUG
2020-01-05 20:39:05 +01:00
#define debuglog commonlog << " DEBUG: "
2020-01-05 11:06:29 +01:00
#else
#define debuglog false && cerr
#endif
2020-01-05 20:39:05 +01:00
#define errorlog commonlog << " ERROR: "
2020-01-05 11:06:29 +01:00
} // namespace mastodonpp
#endif // MASTODONPP_LOG_HPP