[GH-ISSUE #3091] [rust] logging disabled on _default.cfg #2182

Closed
opened 2026-02-27 03:01:22 +03:00 by kerem · 8 comments
Owner

Originally created by @StaticReality on GitHub (Nov 5, 2020).
Original GitHub issue: https://github.com/GameServerManagers/LinuxGSM/issues/3091

User Story

As a [user description], I want [desired action] so that [desired outcome].

Basic info

  • Distro: [cetnos7]
  • Game: [rust]
  • Command: [start]
  • LinuxGSM version: [v20.5.1]

Further Information

A clear description of what the bug is and any ideas on how to resolve it. Plus any further context that might be relevant to the issue.

To Reproduce

Steps to reproduce the behavior:
~/lgsm/config-lgsm/rustserver/_default.cfg parm= line has logging disabled
currently it mentions
-logfile

Expected behavior

parm= line should:
-logfile "${gamelogdate}"

The bug only affect users who DON'T have a specified config file (example: ~/lgsm/config-lgsm/rustserver/rustserver.cfg) and thus pulls variables from _default.cfg

Originally created by @StaticReality on GitHub (Nov 5, 2020). Original GitHub issue: https://github.com/GameServerManagers/LinuxGSM/issues/3091 ## User Story As a [user description], I want [desired action] so that [desired outcome]. ## Basic info * **Distro:** [cetnos7] * **Game:** [rust] * **Command:** [start] * **LinuxGSM version:** [v20.5.1] ## Further Information A clear description of what the bug is and any ideas on how to resolve it. Plus any further context that might be relevant to the issue. ## To Reproduce Steps to reproduce the behavior: ~/lgsm/config-lgsm/rustserver/_default.cfg parm= line has logging disabled currently it mentions -logfile ## Expected behavior parm= line should: -logfile \"${gamelogdate}\" The bug only affect users who DON'T have a specified config file (example: ~/lgsm/config-lgsm/rustserver/rustserver.cfg) and thus pulls variables from _default.cfg
kerem 2026-02-27 03:01:22 +03:00
Author
Owner

@issue-label-bot[bot] commented on GitHub (Nov 5, 2020):

Issue Label Bot is not confident enough to auto-label this issue. See dashboard for more details.

<!-- gh-comment-id:722617220 --> @issue-label-bot[bot] commented on GitHub (Nov 5, 2020): Issue Label Bot is not confident enough to auto-label this issue. See [dashboard](https://mlbot.net/data/GameServerManagers/LinuxGSM) for more details.
Author
Owner

@h3o66 commented on GitHub (Nov 5, 2020):

This was changed here:
#2966

@dgibbs64 do you know why this was changed this way ?

<!-- gh-comment-id:722619589 --> @h3o66 commented on GitHub (Nov 5, 2020): This was changed here: #2966 @dgibbs64 do you know why this was changed this way ?
Author
Owner

@StaticReality commented on GitHub (Nov 5, 2020):

4861d13

<!-- gh-comment-id:722625389 --> @StaticReality commented on GitHub (Nov 5, 2020): 4861d13
Author
Owner

@dgibbs64 commented on GitHub (Nov 7, 2020):

To allow the console to output in tmux. Logs are saved in console log

<!-- gh-comment-id:723425048 --> @dgibbs64 commented on GitHub (Nov 7, 2020): To allow the console to output in tmux. Logs are saved in console log
Author
Owner

@akariley commented on GitHub (Dec 5, 2020):

This does not appear to be working for me on 20.6.1

[rust-testing@gameserver console]$ ps auxf
USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
rust-te+  5082  0.0  0.0 116324  3044 pts/2    S    06:49   0:00 -bash
rust-te+ 10527  0.0  0.0 155448  1752 pts/2    R+   06:56   0:00  \_ ps auxf
rust-te+  4616  0.0  0.0 121932  1872 ?        Ss   06:45   0:00 tmux new-session -d -x 80 -y 23 -s rustserver ./RustDedicated -batchmode +server.ip 170.249.192.29 +server.port 28015 +serve
rust-te+  4617  118 13.6 12677432 4447004 pts/3 Ssl+ 06:45  12:38  \_ ./RustDedicated -batchmode +server.ip 170.249.192.29 +server.port 28015 +server.tickrate 30 +server.hostname Rust +serv
rust-te+  4634  0.0  0.0 108076   352 ?        S    06:45   0:00  \_ cat
[rust-testing@gameserver console]$ pwd;ls -la
/home/rust-testing/rust/log/console
total 12
drwxrwxr-x 2 rust-testing rust-testing 4096 Dec  5 06:45 .
drwxrwxr-x 5 rust-testing rust-testing 4096 Jun 22 16:00 ..
-rw-rw-r-- 1 rust-testing rust-testing    0 Dec  5 06:45 rustserver-console-2020-12-05-06:45:39.log
-rw-rw-r-- 1 rust-testing rust-testing  125 Dec  5 06:45 rustserver-console.log
[rust-testing@gameserver console]$ cat rustserver-console.log 
Set current directory to /home/rust-testing/rust/serverfiles
Found path: /home/rust-testing/rust/serverfiles/RustDedicated
[rust-testing@gameserver console]$ cd ../..
[rust-testing@gameserver rust]$ ./rustserver 
Usage: ./rustserver [option]

LinuxGSM - Rust - Version v20.6.1
<!-- gh-comment-id:739247714 --> @akariley commented on GitHub (Dec 5, 2020): This does not appear to be working for me on 20.6.1 ``` [rust-testing@gameserver console]$ ps auxf USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND rust-te+ 5082 0.0 0.0 116324 3044 pts/2 S 06:49 0:00 -bash rust-te+ 10527 0.0 0.0 155448 1752 pts/2 R+ 06:56 0:00 \_ ps auxf rust-te+ 4616 0.0 0.0 121932 1872 ? Ss 06:45 0:00 tmux new-session -d -x 80 -y 23 -s rustserver ./RustDedicated -batchmode +server.ip 170.249.192.29 +server.port 28015 +serve rust-te+ 4617 118 13.6 12677432 4447004 pts/3 Ssl+ 06:45 12:38 \_ ./RustDedicated -batchmode +server.ip 170.249.192.29 +server.port 28015 +server.tickrate 30 +server.hostname Rust +serv rust-te+ 4634 0.0 0.0 108076 352 ? S 06:45 0:00 \_ cat [rust-testing@gameserver console]$ pwd;ls -la /home/rust-testing/rust/log/console total 12 drwxrwxr-x 2 rust-testing rust-testing 4096 Dec 5 06:45 . drwxrwxr-x 5 rust-testing rust-testing 4096 Jun 22 16:00 .. -rw-rw-r-- 1 rust-testing rust-testing 0 Dec 5 06:45 rustserver-console-2020-12-05-06:45:39.log -rw-rw-r-- 1 rust-testing rust-testing 125 Dec 5 06:45 rustserver-console.log [rust-testing@gameserver console]$ cat rustserver-console.log Set current directory to /home/rust-testing/rust/serverfiles Found path: /home/rust-testing/rust/serverfiles/RustDedicated [rust-testing@gameserver console]$ cd ../.. [rust-testing@gameserver rust]$ ./rustserver Usage: ./rustserver [option] LinuxGSM - Rust - Version v20.6.1 ```
Author
Owner

@dgibbs64 commented on GitHub (Dec 5, 2020):

@akariley do you have custom start parameters? specifically look for a parameter that mentions logging and remove it if you do

<!-- gh-comment-id:739249449 --> @dgibbs64 commented on GitHub (Dec 5, 2020): @akariley do you have custom start parameters? specifically look for a parameter that mentions logging and remove it if you do
Author
Owner

@akariley commented on GitHub (Dec 5, 2020):

Hmm, not sure what happened, but it's working as expected now. I'm gonna call this user error and consume more coffee.

<!-- gh-comment-id:739250724 --> @akariley commented on GitHub (Dec 5, 2020): Hmm, not sure what happened, but it's working as expected now. I'm gonna call this user error and consume more coffee.
Author
Owner

@github-actions[bot] commented on GitHub (Jan 18, 2022):

This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

<!-- gh-comment-id:1014962497 --> @github-actions[bot] commented on GitHub (Jan 18, 2022): This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Sign in to join this conversation.
No labels
Atomic
Epic
cannot reproduce
command: backup
command: console
command: debug
command: details
command: fast-dl
command: install
command: mods
command: monitor
command: post-details
command: restart
command: send
command: start
command: stop
command: update
command: update-lgsm
command: validate
command: wipe
distro: AlmaLinux
distro: Arch Linux
distro: CentOS
distro: Debian
distro: Fedora
distro: RedHat
distro: Rocky Linux
distro: Ubuntu
distro: openSUSE
engine: goldsrc
engine: source
game: 7 Days to Die
game: ARMA 3
game: Ark: Survival Evolved
game: Assetto Corsa
game: Avorion
game: BATTALION: Legacy
game: Barotrauma
game: Battalion 1944
game: Battlefield 1942
game: Black Mesa: Deathmatch
game: Blade Symphony
game: Call of Duty 2
game: Call of Duty 4
game: Call of Duty: United Offensive
game: Counter-Strike 1.6
game: Counter-Strike 2
game: Counter-Strike: Global Offensive
game: Counter-Strike: Source
game: Day of Infamy
game: Dayz
game: Death Match Classic
game: Don't Starve Together
game: ET: Legacy
game: Eco
game: Factorio
game: Factorio
game: Garry's Mod
game: Half-Life
game: Hurtword
game: Insurgecy
game: Insurgecy
game: Insurgency: Sandstorm
game: Just Cause 3
game: Killing Floor
game: Killing Floor 2
game: Left 4 Dead 2
game: Minecraft
game: Minecraft Bedrock
game: Mordhau
game: Multi Theft Auto
game: Mumble
game: Natural Selection 2
game: No More Room in Hell
game: Pavlov VR
game: Post Scriptum
game: Project Zomboid
game: Quake 3
game: QuakeWorld
game: Red Orchestra: Ostfront 41-45
game: Return to Castle Wolfenstein
game: Rising World
game: Rust
game: San Andreas Multiplayer
game: Satisfactory
game: Soldat
game: Soldier of Fortune 2
game: Squad
game: Squad 44
game: Starbound
game: Stationeers
game: Sven Co-op
game: Team Fortress 2
game: Teamspeak 3
game: Teeworlds
game: Terraria
game: The Front
game: Unreal Tournament 2004
game: Unreal Tournament 3
game: Unreal Tournament 99
game: Unturned
game: Valheim
game: Wurm Unlimited
game: Zombie Master Reborn
game: label missing
good first issue
help wanted
info: alerts
info: dependency
info: docker
info: docs
info: email
info: query
info: steamcmd
info: systemd
info: tmux
info: website
info: website
needs more info
outcome: duplicate
outcome: issue resolved
outcome: issue resolved
outcome: issue unresolved
outcome: pr accepted
outcome: pr rejected
outcome: unconfirmed
outcome: wontfix
outcome: wrong forum
potential-duplicate
priority
pull-request
type: bug
type: feature
type: feature
type: feature request
type: game server request
type: refactor
waiting response
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/LinuxGSM#2182
No description provided.