fix(OFF): return values even when OFF
This commit is contained in:
parent
43028ec0d5
commit
799ba17a18
1 changed files with 27 additions and 21 deletions
|
|
@ -1603,9 +1603,9 @@ class clutchlog
|
||||||
protected:
|
protected:
|
||||||
std::ostream& print_on( std::ostream&) const {}
|
std::ostream& print_on( std::ostream&) const {}
|
||||||
public:
|
public:
|
||||||
friend std::ostream& operator<<(std::ostream&, const fmt&) {}
|
friend std::ostream& operator<<(std::ostream& os, const fmt&) { return os; }
|
||||||
std::string operator()( const std::string&) const {}
|
std::string operator()( const std::string& msg) const { return msg; }
|
||||||
std::string str() const {}
|
std::string str() const { return ""; }
|
||||||
static fmt hash( const std::string&, const std::vector<fmt>) {}
|
static fmt hash( const std::string&, const std::vector<fmt>) {}
|
||||||
};
|
};
|
||||||
public:
|
public:
|
||||||
|
|
@ -1624,32 +1624,32 @@ class clutchlog
|
||||||
{}
|
{}
|
||||||
public:
|
public:
|
||||||
void format(const std::string&) {}
|
void format(const std::string&) {}
|
||||||
std::string format() const {}
|
std::string format() const { return ""; }
|
||||||
|
|
||||||
void format_comment(const std::string&) {}
|
void format_comment(const std::string&) {}
|
||||||
std::string format_comment() const {}
|
std::string format_comment() const { return ""; }
|
||||||
|
|
||||||
void out(std::ostream&) {}
|
void out(std::ostream&) {}
|
||||||
std::ostream& out() {}
|
std::ostream& out() {}
|
||||||
|
|
||||||
#if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
|
#if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
|
||||||
void depth(size_t) {}
|
void depth(size_t) {}
|
||||||
size_t depth() const {}
|
size_t depth() const { return 0; }
|
||||||
|
|
||||||
void depth_mark(const std::string) {}
|
void depth_mark(const std::string) {}
|
||||||
std::string depth_mark() const {}
|
std::string depth_mark() const { return ""; }
|
||||||
void strip_calls(const size_t) {}
|
void strip_calls(const size_t) {}
|
||||||
size_t strip_calls() const {}
|
size_t strip_calls() const { return 0; }
|
||||||
#endif
|
#endif
|
||||||
#if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1
|
#if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1
|
||||||
void hfill_mark(const char) {}
|
void hfill_mark(const char) {}
|
||||||
char hfill_mark() const {}
|
char hfill_mark() const { return '\0'; }
|
||||||
void hfill_fmt(fmt) {}
|
void hfill_fmt(fmt) {}
|
||||||
fmt hfill_fmt() const {}
|
fmt hfill_fmt() const { return fmt(); }
|
||||||
void hfill_min(const size_t) {}
|
void hfill_min(const size_t) {}
|
||||||
size_t hfill_min() {}
|
size_t hfill_min() { return 0; }
|
||||||
void hfill_max(const size_t) {}
|
void hfill_max(const size_t) {}
|
||||||
size_t hfill_max() {}
|
size_t hfill_max() { return 0; }
|
||||||
#endif
|
#endif
|
||||||
void filehash_styles(std::vector<fmt> ) {}
|
void filehash_styles(std::vector<fmt> ) {}
|
||||||
void funchash_styles(std::vector<fmt> ) {}
|
void funchash_styles(std::vector<fmt> ) {}
|
||||||
|
|
@ -1657,9 +1657,9 @@ class clutchlog
|
||||||
|
|
||||||
void threshold(level) {}
|
void threshold(level) {}
|
||||||
void threshold(const std::string&) {}
|
void threshold(const std::string&) {}
|
||||||
level threshold() const {}
|
level threshold() const { return level::error; }
|
||||||
const std::map<std::string,level> levels() const {}
|
const std::map<std::string,level> levels() const {}
|
||||||
level level_of(const std::string) {}
|
level level_of(const std::string) { return level::error; }
|
||||||
|
|
||||||
void file(std::string) {}
|
void file(std::string) {}
|
||||||
void func(std::string) {}
|
void func(std::string) {}
|
||||||
|
|
@ -1677,25 +1677,29 @@ class clutchlog
|
||||||
template<class ... FMT>
|
template<class ... FMT>
|
||||||
void style(level, FMT...) {}
|
void style(level, FMT...) {}
|
||||||
void style(level, fmt) {}
|
void style(level, fmt) {}
|
||||||
fmt style(level) const {}
|
fmt style(level) const { return fmt(); }
|
||||||
void filename(filename) {}
|
void filename(filename) {}
|
||||||
public:
|
public:
|
||||||
std::string replace(
|
std::string replace(
|
||||||
const std::string&,
|
const std::string& form,
|
||||||
const std::string&,
|
const std::string&,
|
||||||
const std::string&
|
const std::string&
|
||||||
) const
|
) const
|
||||||
{}
|
{
|
||||||
|
return form;
|
||||||
|
}
|
||||||
|
|
||||||
std::string replace(
|
std::string replace(
|
||||||
const std::string&,
|
const std::string& form,
|
||||||
const std::string&,
|
const std::string&,
|
||||||
const size_t
|
const size_t
|
||||||
) const
|
) const
|
||||||
{}
|
{
|
||||||
|
return form;
|
||||||
|
}
|
||||||
|
|
||||||
std::string format(
|
std::string format(
|
||||||
std::string,
|
std::string row,
|
||||||
const std::string&,
|
const std::string&,
|
||||||
#if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
|
#if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
|
||||||
const std::string&,
|
const std::string&,
|
||||||
|
|
@ -1709,7 +1713,9 @@ class clutchlog
|
||||||
const size_t
|
const size_t
|
||||||
#endif
|
#endif
|
||||||
) const
|
) const
|
||||||
{}
|
{
|
||||||
|
return row;
|
||||||
|
}
|
||||||
|
|
||||||
void log(
|
void log(
|
||||||
const level&,
|
const level&,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue