Skip to content

Commit 1079363

Browse files
committed
Update init.lua
1 parent ba94243 commit 1079363

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

lua/gpm/init.lua

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@ end
2020
-- Measuring startup time
2121
local stopwatch = SysTime()
2222

23-
-- Third-party libraries
24-
libs = {}
25-
libs.deflatelua = IncludeComponent "libs/deflatelua"
26-
2723
-- Utils
2824
IncludeComponent "utils"
2925

@@ -36,13 +32,18 @@ IncludeComponent "logger"
3632
-- Global GPM Logger Creating
3733
Logger = logger.Create( "GPM@" .. utils.Version( _VERSION ), Color( 180, 180, 255 ) )
3834

39-
-- Basic Libs
35+
-- Third-party libraries
36+
libs = {}
37+
libs.deflatelua = IncludeComponent "libs/deflatelua"
38+
Logger:Info( "%s %s is initialized.", libs.deflatelua._NAME, libs.deflatelua._VERSION )
39+
40+
-- Our libraries
4041
IncludeComponent "environment"
4142
IncludeComponent "gmad"
4243

4344
-- Promises
4445
IncludeComponent "promise"
45-
Logger:Info( "Promise the library version %s is initialized.", utils.Version( promise._VERSION_NUM ) )
46+
Logger:Info( "gm_promise %s is initialized.", utils.Version( promise._VERSION_NUM ) )
4647

4748
-- File System & HTTP
4849
IncludeComponent "fs"

0 commit comments

Comments
 (0)