| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Compact binary package caching support (#9) | Per Larsson | 2021-09-16 | 1 | -1/+1 |
| | | |||||
| * | Fixed marshaling of outputs including sanity checks, logging | Stefan Boberg | 2021-09-16 | 1 | -2/+20 |
| | | |||||
| * | Fixed some unreferenced variable warnings (why don't we get these in sln ↵ | Stefan Boberg | 2021-09-16 | 1 | -10/+20 |
| | | | | | builds?). Also added size verification to certain payloads | ||||
| * | Added more context to missing chunk exceptions | Stefan Boberg | 2021-09-15 | 1 | -3/+4 |
| | | |||||
| * | Changed `std::exception` into `std::runtime_error` since `std::exception` ↵ | Stefan Boberg | 2021-09-15 | 1 | -4/+4 |
| | | | | | does not have a constructor which accepts a string argument in the standard (this appears to be an MSVC implementation thing) | ||||
| * | Changed logging implementation | Stefan Boberg | 2021-09-15 | 1 | -22/+22 |
| | | | | | | | * Code should no longer directly `#include spdlog/spdlog.h`, instead use `#include <zencore/logging.h>` * Instead of explicit calls to `spdlog::info(...)` and such please use the logging macros defined in `zencore/logging.h`. I.e `ZEN_INFO`, `ZEN_DEBUG`, `ZEN_TRACE`, `ZEN_ERROR`, `ZEN_CRITITCAL` * The macros will pick up the "most local" logger via a `Log()` call to retrieve a logger instance. To override the default logger in a class please implement your own `Log()` function | ||||
| * | Changed so more loggers go via the zen::loggers interface | Stefan Boberg | 2021-09-15 | 1 | -85/+1 |
| | | |||||
| * | Updated function service to new package management API | Stefan Boberg | 2021-09-14 | 1 | -21/+29 |
| | | |||||
| * | HttpResponse enum -> HttpResponseCode | Stefan Boberg | 2021-09-12 | 1 | -11/+11 |
| | | | | | Also removed initial CbPackage API HttpServer changes as I have decided to take a different approach | ||||
| * | Merge branch 'main' of https://github.com/EpicGames/zen | Stefan Boberg | 2021-09-06 | 1 | -1/+1 |
| |\ | |||||
| | * | Cleaned up log message | Stefan Boberg | 2021-09-04 | 1 | -1/+1 |
| | | | |||||
| * | | Changed so function service commits compressed buffers | Stefan Boberg | 2021-09-06 | 1 | -5/+7 |
| |/ | |||||
| * | Introduced support for compressed buffer attachments | Stefan Boberg | 2021-09-02 | 1 | -2/+2 |
| | | |||||
| * | Format fix. | Per Larsson | 2021-08-31 | 1 | -1/+1 |
| | | |||||
| * | Basic implementation of function evaluation | Stefan Boberg | 2021-08-28 | 1 | -63/+290 |
| | | |||||
| * | Implemented function propagation | Stefan Boberg | 2021-08-24 | 1 | -1/+56 |
| | | |||||
| * | WIP interface for submitting workers/jobs | Stefan Boberg | 2021-08-24 | 1 | -3/+63 |
| | | |||||
| * | WIP services | Stefan Boberg | 2021-08-20 | 1 | -4/+25 |
| | | |||||
| * | Tactical checkin: function service stub - not yet in use! | Stefan Boberg | 2021-08-19 | 1 | -0/+531 |