1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-09-21 00:05:35 +02:00

Compare commits

...

2 Commits

Author SHA1 Message Date
fbdc20dfa5
fix: git clone toxcore recursive 2022-11-30 12:36:05 +01:00
jfreegman
e8388bf20c
Show toxcore TRACE logging messages
I'm not sure why this was disabled. It shouldn't be.
2022-10-13 23:27:31 -04:00
2 changed files with 2 additions and 6 deletions

View File

@ -28,7 +28,7 @@ jobs:
libx11-dev
python3-dev
pkg-config &&
git clone --depth=1 https://github.com/TokTok/c-toxcore &&
git clone --depth=1 --recursive https://github.com/TokTok/c-toxcore &&
cd c-toxcore &&
cmake . -B_build -DBOOTSTRAP_DAEMON=OFF &&
cd _build &&
@ -85,7 +85,7 @@ jobs:
make
python3-dev
pkg-config &&
git clone --depth=1 https://github.com/TokTok/c-toxcore &&
git clone --depth=1 --recursive https://github.com/TokTok/c-toxcore &&
cd c-toxcore &&
cmake . -B_build -DBOOTSTRAP_DAEMON=OFF &&
cd _build &&

View File

@ -258,10 +258,6 @@ void cb_toxcore_logger(Tox *m, TOX_LOG_LEVEL level, const char *file, uint32_t l
{
UNUSED_VAR(m);
if (level == TOX_LOG_LEVEL_TRACE) {
return;
}
FILE *fp = (FILE *)user_data;
if (!fp) {