summaryrefslogtreecommitdiff
path: root/src/logger.cpp
AgeCommit message (Collapse)AuthorFilesLines
2025-06-30Fixing windows supportMeway1-3/+3
Changes to be committed: modified: CMake/Modules/FindLibIntl.cmake modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/Makefile.am modified: src/chatlogger.cpp modified: src/configmanager.cpp modified: src/debug/nvwa/debug_new.cpp modified: src/debug/nvwa/fast_mutex.h modified: src/defaults.cpp modified: src/dirs.cpp modified: src/enums/input/inputaction.h modified: src/enums/state.h modified: src/fs/files.cpp modified: src/fs/mkdir.cpp modified: src/fs/paths.cpp modified: src/fs/specialfolder.cpp modified: src/fs/specialfolder.h modified: src/fs/virtfs/fs.cpp modified: src/fs/virtfs/fsdir.cpp modified: src/game.cpp modified: src/graphicsmanager.cpp modified: src/gui/dialogsmanager.cpp modified: src/gui/palette.cpp modified: src/gui/widgets/tabs/chat/chattab.cpp modified: src/gui/widgets/tabs/setup_misc.cpp modified: src/gui/widgets/tabs/setup_video.cpp modified: src/gui/widgets/tabs/setup_visual.cpp modified: src/gui/windowmanager.cpp modified: src/gui/windows/killstats.cpp modified: src/gui/windows/serverdialog.cpp modified: src/gui/windows/updaterwindow.cpp modified: src/logger.cpp modified: src/main.cpp modified: src/main.h modified: src/maingui.cpp modified: src/mumblemanager.cpp modified: src/particle/particleemitterprop.h modified: src/progs/dyecmd/client.cpp modified: src/progs/manaverse/client.cpp modified: src/render/opengl/mgl.hpp modified: src/render/opengl/mglfunctions.h modified: src/render/opengl/mgltypes.h modified: src/resources/wallpaper.cpp modified: src/sdl2gfx/SDL2_rotozoom.cpp modified: src/sdl2gfx/SDL2_rotozoom.h modified: src/test/testlauncher.cpp modified: src/test/testlauncher.h modified: src/unittests/fs/files.cc modified: src/utils/copynpaste.cpp modified: src/utils/env.cpp modified: src/utils/gettexthelper.cpp modified: src/utils/process.cpp modified: src/utils/stringutils.cpp modified: src/utils/xml/libxml.cpp
2025-05-24Switch source code headers to ManaVerse & update copyrights to 2025Fedja Beader1-3/+3
.. instead of manaplus's header. & update copyrights to 2025. Open problem: should it be "The ManaVerse Client", "the ManaVerse client" or something in between in "This file is part of ..." line? All caps is current situation. Squashed with: * update copyright dates for 2025 * Revert "Switch to branch of mplint that checks for manaverse copyright headers" * Change back to uppercase The Why? This line was changed 3 times in history and all had an uppercase The. PS: ManaVerse has no endorsment from the parent project, ManaPlus. * Change to "This file is part of the ManaVerse Client" poppet says 'the' instead of 'The' find . \( -name "*.h" -o -name "*.cpp" -o -name "*.cc" -o -name "*.inc" \) -execdir sed -i -e 's/This file is part of The ManaPlus Client/This file is part of the ManaVerse Client/' {} \+ * Change 'The ManaPlus Client' to 'The ManaVerse Client' in headers find . \( -name "*.h" -o -name "*.cpp" -o -name "*.cc" -o -name "*.inc" \) -execdir sed -i -e '2s/ManaPlus/ManaVerse/' {} \+ * Switch to branch of mplint that checks for manaverse copyright headers .. instead of manaplus's **** mana/plus!179
2025-02-24added manaverse' copyright line to src/jak11-0/+1
Split from mana/plus!28 and rebased on master by specing. **** mana/plus!131
2025-02-24updated copyright -2020 for manaplusjak11-1/+1
In theory split out from mana/plus!28, in practice I (specing) just ran sed myself instead of bothering with splitting out changes. **** mana/plus!130
2020-05-07Fix code style after merged switch port codeAndrei Karas1-1/+1
2020-04-22switch: first commitcpasjuste1-0/+4
2020-02-23Fix some code style issuesAndrei Karas1-1/+1
2019-01-01Update copyright year.Andrei Karas1-1/+1
2018-05-22Log libcurl errors into manaplus.logAndrei Karas1-0/+5
2018-02-16Add flush in logger for improve log saving.Andrei Karas1-0/+5
2018-02-16Replace file type from stream to FILE in logger.Andrei Karas1-64/+111
This will allow log data from C libs.
2018-01-04Update copyrights year.Andrei Karas1-1/+1
2017-09-18Redirect logging to file after log file opened.Andrei Karas1-0/+5
If log file open failed, redirect logging back to stdout.
2017-09-15If critical error happened, show message box (SDL2)Andrei Karas1-0/+18
2017-07-14Replace std::vector into macro STD_VECTOR.Andrei Karas1-1/+1
In most case it equal to std::vector except debug modes. Now it can be also mse::mstd::vector, but sadly this class not support all required features.
2017-06-30Remove extra includes from headers.Andrei Karas1-0/+1
2017-06-29Move foreach macroses into separate file.Andrei Karas1-0/+1
2017-06-27Fix flushing log data from non main thread.Andrei Karas1-2/+2
Before it was buffered before any logging data from main thread.
2017-06-07Fix clang-tidy check readability-implicit-bool-cast.Andrei Karas1-2/+2
2017-01-03Update copyright year.Andrei Karas1-1/+1
2016-11-11Fix typo implimented -> implemented.Andrei Karas1-7/+7
2016-09-23Add missing comments into defines.Andrei Karas1-7/+11
2016-06-13Fix includes and update deheader ci script.Andrei Karas1-2/+4
2016-04-30Rename Logger::assert into Logger::assertLog for this issue with some systems.Andrei Karas1-1/+1
2016-04-30Extend assert reporting functions with condition text and call stack.Andrei Karas1-0/+39
2016-03-26Fix code style.Andrei Karas1-1/+1
2016-03-22Show hex packet id in for wrong packet sizes.Andrei Karas1-1/+2
2016-03-18Fix typos.Andrei Karas1-1/+1
2016-03-15Show info about wrong packet size in chat if enabled show unimplimentaed ↵Andrei Karas1-0/+16
packets.
2016-03-10For unknown packet field values show packet id and field value.Andrei Karas1-1/+17
2016-02-07Replace most static_cast<Type> to shorter versions from defines.Andrei Karas1-9/+9
2016-01-02Update copyrights year.Andrei Karas1-1/+1
2015-12-15Enable writing to android or nacl log if enabled debug log in settings.Andrei Karas1-2/+16
2015-12-02Flush log writes in nacl after each log write.Andrei Karas1-0/+3
2015-12-01Add support for logging in nacl to console.Andrei Karas1-0/+3
2015-12-01Rename LOG_ANDROID into SPECIALLOG.Andrei Karas1-9/+9
2015-06-06Fix code style.Andrei Karas1-0/+2
2015-03-16Remove useless includes from cpp filesAndrei Karas1-1/+0
2015-03-13fix code style.Andrei Karas1-1/+1
2015-03-10Improve reporting string about unimplimented packets.Andrei Karas1-1/+2
2015-03-10Add option in settings to enable/disable logging unimplimented packets.Andrei Karas1-1/+5
2015-03-10Add UNIMPLIMENTEDPACKET macroAndrei Karas1-0/+11
2015-01-01Update copyrights year.Andrei Karas1-1/+1
2014-11-24Add option to disable logging for better performance while connected to server.Andrei Karas1-0/+11
2014-09-06In debug packets logging also display offset.Andrei Karas1-5/+31
2014-08-31Improve packets logging speed.Andrei Karas1-0/+31
2014-08-28Removed unused includes.Andrei Karas1-2/+1
2014-05-08Fix code style in other files.Andrei Karas1-2/+2
2014-02-20improve includes.Andrei Karas1-1/+2
2014-01-14fix thread safe logging.Andrei Karas1-0/+1