AK: Remove out() and warn().

This commit is contained in:
asynts 2020-11-09 10:40:23 +01:00 committed by Andreas Kling
parent 74d9616bec
commit 74438e6fdc
2 changed files with 0 additions and 38 deletions

View file

@ -186,20 +186,6 @@ bool DebugLogStream::is_enabled()
bool DebugLogStream::s_enabled = true;
#ifndef KERNEL
StdLogStream::~StdLogStream()
{
char newline = '\n';
write(&newline, 1);
}
void StdLogStream::write(const char* characters, int length) const
{
if (::write(m_fd, characters, length) < 0) {
perror("StdLogStream::write");
ASSERT_NOT_REACHED();
}
}
const LogStream& operator<<(const LogStream& stream, double value)
{
return stream << String::format("%.4f", value);
@ -209,7 +195,6 @@ const LogStream& operator<<(const LogStream& stream, float value)
{
return stream << String::format("%.4f", value);
}
#endif
void dump_bytes(ReadonlyBytes bytes)

View file

@ -125,24 +125,6 @@ private:
static bool s_enabled;
};
#if !defined(KERNEL)
class StdLogStream final : public LogStream {
public:
StdLogStream(int fd)
: m_fd(fd)
{
}
virtual ~StdLogStream() override;
virtual void write(const char* characters, int length) const override;
private:
int m_fd { -1 };
};
[[deprecated("Use AK::outln or AK::new_out instead, AK::new_out will soon be renamed to AK::out.")]] inline StdLogStream out() { return StdLogStream(STDOUT_FILENO); }
[[deprecated("Use AK::warnln or AK::new_warn instead, AK::new_warn will soon be renamed to AK::warn.")]] inline StdLogStream warn() { return StdLogStream(STDERR_FILENO); }
#endif
#ifdef KERNEL
class KernelLogStream final : public BufferedLogStream {
public:
@ -212,8 +194,3 @@ void dump_bytes(ReadonlyBytes);
using AK::dbg;
using AK::klog;
using AK::LogStream;
#if !defined(KERNEL)
using AK::out;
using AK::warn;
#endif