Skip to content
Snippets Groups Projects
  1. Dec 06, 2022
  2. Dec 05, 2022
  3. Dec 01, 2022
  4. Nov 29, 2022
  5. Nov 28, 2022
  6. Nov 24, 2022
  7. Nov 23, 2022
  8. Nov 18, 2022
  9. Nov 15, 2022
  10. Nov 14, 2022
  11. Nov 11, 2022
  12. Nov 09, 2022
  13. Nov 07, 2022
    • Yaroslav Dynnikov's avatar
      fix(mutex): insufficient lock location info logged · 6e872b09
      Yaroslav Dynnikov authored
      Before this patch, when an attempt to lock a mutex failed, only the
      previous lock location was printed. But we still had no idea where that
      fail occured.
      
      With this patch the log message looks as follows:
      
      ```
      can't lock mutex at src/traft/node.rs:234:14,
      already locked at src/traft/node.rs:876:44
      ```
      
      Also, this patch makes the corresponding test more strict.
      6e872b09
  14. Nov 02, 2022
  15. Oct 31, 2022
  16. Oct 28, 2022
  17. Oct 27, 2022
    • Yaroslav Dynnikov's avatar
      refactor: track tlua error location · c13a6a5e
      Yaroslav Dynnikov authored
      When lua raises an error from the code loaded with `tlua::exec()` and
      `tlua::eval()`, it looks as follows:
      
      ```
      [string \"chunk\"]:1: oops
      ```
      
      It gives no useful information and complicates debugging.
      
      With this patch, lua errors will correctly point to the place where
      `exec()` was called, e.g.:
      
      ```
      [tests/src/tlua/lua_functions.rs:216]:6: oops
      ```
      c13a6a5e
  18. Oct 26, 2022
  19. Oct 21, 2022
  20. Oct 19, 2022
  21. Oct 17, 2022
  22. Oct 13, 2022
  23. Oct 12, 2022
  24. Oct 06, 2022
Loading