summaryrefslogtreecommitdiffstats
path: root/src/common/logging/text_formatter.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-04-03 03:19:20 +0200
committerGitHub <noreply@github.com>2018-04-03 03:19:20 +0200
commitc2e0820ac2c0b51c0b14af608f4225eec8712f5e (patch)
tree0a40b6f36c98402748b881fb43986f32d16ffbd8 /src/common/logging/text_formatter.h
parentMerge pull request #267 from N00byKing/patch-1 (diff)
parentRemove dependency chrono (diff)
downloadyuzu-c2e0820ac2c0b51c0b14af608f4225eec8712f5e.tar
yuzu-c2e0820ac2c0b51c0b14af608f4225eec8712f5e.tar.gz
yuzu-c2e0820ac2c0b51c0b14af608f4225eec8712f5e.tar.bz2
yuzu-c2e0820ac2c0b51c0b14af608f4225eec8712f5e.tar.lz
yuzu-c2e0820ac2c0b51c0b14af608f4225eec8712f5e.tar.xz
yuzu-c2e0820ac2c0b51c0b14af608f4225eec8712f5e.tar.zst
yuzu-c2e0820ac2c0b51c0b14af608f4225eec8712f5e.zip
Diffstat (limited to 'src/common/logging/text_formatter.h')
-rw-r--r--src/common/logging/text_formatter.h14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/common/logging/text_formatter.h b/src/common/logging/text_formatter.h
index 66e86d9ec..c587faefb 100644
--- a/src/common/logging/text_formatter.h
+++ b/src/common/logging/text_formatter.h
@@ -10,20 +10,8 @@ namespace Log {
struct Entry;
-/**
- * Attempts to trim an arbitrary prefix from `path`, leaving only the part starting at `root`. It's
- * intended to be used to strip a system-specific build directory from the `__FILE__` macro,
- * leaving only the path relative to the sources root.
- *
- * @param path The input file path as a null-terminated string
- * @param root The name of the root source directory as a null-terminated string. Path up to and
- * including the last occurrence of this name will be stripped
- * @return A pointer to the same string passed as `path`, but starting at the trimmed portion
- */
-const char* TrimSourcePath(const char* path, const char* root = "src");
-
/// Formats a log entry into the provided text buffer.
-void FormatLogMessage(const Entry& entry, char* out_text, size_t text_len);
+std::string FormatLogMessage(const Entry& entry);
/// Formats and prints a log entry to stderr.
void PrintMessage(const Entry& entry);
/// Prints the same message as `PrintMessage`, but colored acoording to the severity level.