macos_terminal_logger.mm 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /**************************************************************************/
  2. /* macos_terminal_logger.mm */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #include "macos_terminal_logger.h"
  31. #ifdef MACOS_ENABLED
  32. #include <os/log.h>
  33. void MacOSTerminalLogger::log_error(const char *p_function, const char *p_file, int p_line, const char *p_code, const char *p_rationale, bool p_editor_notify, ErrorType p_type) {
  34. if (!should_log(true)) {
  35. return;
  36. }
  37. const char *err_details;
  38. if (p_rationale && p_rationale[0]) {
  39. err_details = p_rationale;
  40. } else {
  41. err_details = p_code;
  42. }
  43. switch (p_type) {
  44. case ERR_WARNING:
  45. os_log_info(OS_LOG_DEFAULT,
  46. "WARNING: %{public}s\nat: %{public}s (%{public}s:%i)",
  47. err_details, p_function, p_file, p_line);
  48. logf_error("\E[1;33mWARNING:\E[0;93m %s\n", err_details);
  49. logf_error("\E[0;90m at: %s (%s:%i)\E[0m\n", p_function, p_file, p_line);
  50. break;
  51. case ERR_SCRIPT:
  52. os_log_error(OS_LOG_DEFAULT,
  53. "SCRIPT ERROR: %{public}s\nat: %{public}s (%{public}s:%i)",
  54. err_details, p_function, p_file, p_line);
  55. logf_error("\E[1;35mSCRIPT ERROR:\E[0;95m %s\n", err_details);
  56. logf_error("\E[0;90m at: %s (%s:%i)\E[0m\n", p_function, p_file, p_line);
  57. break;
  58. case ERR_SHADER:
  59. os_log_error(OS_LOG_DEFAULT,
  60. "SHADER ERROR: %{public}s\nat: %{public}s (%{public}s:%i)",
  61. err_details, p_function, p_file, p_line);
  62. logf_error("\E[1;36mSHADER ERROR:\E[0;96m %s\n", err_details);
  63. logf_error("\E[0;90m at: %s (%s:%i)\E[0m\n", p_function, p_file, p_line);
  64. break;
  65. case ERR_ERROR:
  66. default:
  67. os_log_error(OS_LOG_DEFAULT,
  68. "ERROR: %{public}s\nat: %{public}s (%{public}s:%i)",
  69. err_details, p_function, p_file, p_line);
  70. logf_error("\E[1;31mERROR:\E[0;91m %s\n", err_details);
  71. logf_error("\E[0;90m at: %s (%s:%i)\E[0m\n", p_function, p_file, p_line);
  72. break;
  73. }
  74. }
  75. #endif // MACOS_ENABLED