MCPcopy Create free account
hub / github.com/acl-dev/acl / fiber_log_writer

Function fiber_log_writer

lib_fiber/cpp/src/fiber_server.cpp:1080–1089  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1078}
1079
1080static void fiber_log_writer(void *, const char *fmt, va_list ap)
1081{
1082 va_list tmp;
1083 va_copy(tmp, ap);
1084
1085 acl::string buf;
1086 buf.vformat(fmt, tmp);
1087 acl_msg_info("%s", buf.c_str());
1088 //printf("%s\r\n", buf.c_str());
1089}
1090
1091static void hook_fiber_log()
1092{

Callers

nothing calls this directly

Calls 3

acl_msg_infoFunction · 0.85
vformatMethod · 0.45
c_strMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…