aboutsummaryrefslogtreecommitdiff
path: root/zen/cmds/up.cpp
Commit message (Collapse)AuthorAgeFilesLines
* moved source directories into `/src` (#264)Stefan Boberg2023-05-021-108/+0
| | | | | | * moved source directories into `/src` * updated bundle.lua for new `src` path * moved some docs, icon * removed old test trees
* fix down command (#254)Dan Engelbrecht2023-04-241-6/+10
| | | | | * add option to zen down command to control port * use correct port for shutdown even when attaching to running server * changelog
* Zen cmd fixes (#201)Dan Engelbrecht2022-12-071-3/+3
| | | | | | | * updated drop command to support namespaces * fixed hash command error message * fix output of status (and top) command * Use ZEN_CONSOLE for output in zen commands * changelog
* clang-formatStefan Boberg2021-09-171-1/+1
|
* Added namespace scopes to more includes for better consistencyStefan Boberg2021-09-171-0/+4
|
* Moved zenserverprocess into zenutil/zenserverprocess.hStefan Boberg2021-09-171-1/+1
|
* Changed logging implementationStefan Boberg2021-09-151-7/+7
| | | | | | * 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 direct includes of spdlog/spdlog.h into zencore/logging.h to make it ↵Stefan Boberg2021-09-151-1/+1
| | | | easier to tweak implementation
* Removed #pragma once from cpp files (copy pasta fail)Stefan Boberg2021-09-031-2/+0
|
* Basic implementation of 'down' commandStefan Boberg2021-08-091-0/+43
|
* Added some new management commandsStefan Boberg2021-08-071-0/+59