aboutsummaryrefslogtreecommitdiff
path: root/gamemode/shared
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2017-10-09 16:20:46 -0400
committerAlexander Pickering <alexandermpickering@gmail.com>2017-10-09 16:20:46 -0400
commitda81a0a23a3704dd2de3ab2249496c1ad1912d1c (patch)
tree915edc671acbb292191adad2f25f87ba26e567cf /gamemode/shared
parent497be6ff15989c7bf9de5beb138d2ef042dca6bd (diff)
downloadartery-da81a0a23a3704dd2de3ab2249496c1ad1912d1c.tar.gz
artery-da81a0a23a3704dd2de3ab2249496c1ad1912d1c.tar.bz2
artery-da81a0a23a3704dd2de3ab2249496c1ad1912d1c.zip
Updated internal representation of inventories
Diffstat (limited to 'gamemode/shared')
-rw-r--r--gamemode/shared/log.lua9
1 files changed, 4 insertions, 5 deletions
diff --git a/gamemode/shared/log.lua b/gamemode/shared/log.lua
index ad5da46..92bb349 100644
--- a/gamemode/shared/log.lua
+++ b/gamemode/shared/log.lua
@@ -10,7 +10,7 @@ log.debug = fn.compose(
),
fn.curry(
string.format,
- "[DEBUG] %s"
+ "[DEBUG] %s\n"
)
)
@@ -21,7 +21,7 @@ log.info = fn.compose(
),
fn.curry(
string.format,
- "[INFO] %s"
+ "[INFO] %s\n"
)
)
@@ -30,10 +30,9 @@ log.warn = fn.compose(
MsgC,
col.console.yellow
),
- debug.traceback,
fn.curry(
- ErrorNoHalt,
- "[WARNING]"
+ string.format,
+ "[WARNING] %s\n"
)
)