MCPcopy Create free account
hub / github.com/RPCSX/rpcsx / append_log_message

Function append_log_message

rpcs3/util/bin_patch.cpp:153–164  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

151}
152
153static void append_log_message(std::stringstream* log_messages, std::string_view message, const logs::message* channel = nullptr)
154{
155 if (channel)
156 {
157 channel->operator()("%s", message);
158 }
159
160 if (log_messages && !message.empty())
161 {
162 *log_messages << message << std::endl;
163 }
164};
165
166bool patch_engine::load(patch_map& patches_map, const std::string& path, std::string content, bool importing, std::stringstream* log_messages)
167{

Callers 5

loadMethod · 0.85
add_patch_dataMethod · 0.85
read_patch_nodeMethod · 0.85
append_patchesFunction · 0.85
save_patchesMethod · 0.85

Calls 2

operator()Method · 0.45
emptyMethod · 0.45

Tested by

no test coverage detected