├── .gitignore ├── LICENSE ├── README.md ├── gmlogging-suite.resource_order ├── gmlogging-suite.yyp ├── objects ├── oAsyncWrapperHttp │ ├── Create_0.gml │ ├── Other_62.gml │ └── oAsyncWrapperHttp.yy ├── oAsyncWrapperNetworking │ ├── Create_0.gml │ ├── Other_68.gml │ └── oAsyncWrapperNetworking.yy └── obj_demo │ ├── Other_4.gml │ └── obj_demo.yy ├── options ├── android │ └── options_android.yy ├── html5 │ └── options_html5.yy ├── ios │ └── options_ios.yy ├── linux │ └── options_linux.yy ├── mac │ └── options_mac.yy ├── main │ └── options_main.yy ├── operagx │ └── options_operagx.yy ├── tvos │ └── options_tvos.yy └── windows │ └── options_windows.yy ├── rooms ├── rm_demo │ └── rm_demo.yy └── rm_test │ └── rm_test.yy └── scripts ├── AsyncWrapper ├── AsyncWrapper.gml └── AsyncWrapper.yy ├── Exception ├── Exception.gml └── Exception.yy ├── Logger ├── Logger.gml └── Logger.yy └── Sentry ├── Sentry.gml └── Sentry.yy /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/README.md -------------------------------------------------------------------------------- /gmlogging-suite.resource_order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/gmlogging-suite.resource_order -------------------------------------------------------------------------------- /gmlogging-suite.yyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/gmlogging-suite.yyp -------------------------------------------------------------------------------- /objects/oAsyncWrapperHttp/Create_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/objects/oAsyncWrapperHttp/Create_0.gml -------------------------------------------------------------------------------- /objects/oAsyncWrapperHttp/Other_62.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/objects/oAsyncWrapperHttp/Other_62.gml -------------------------------------------------------------------------------- /objects/oAsyncWrapperHttp/oAsyncWrapperHttp.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/objects/oAsyncWrapperHttp/oAsyncWrapperHttp.yy -------------------------------------------------------------------------------- /objects/oAsyncWrapperNetworking/Create_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/objects/oAsyncWrapperNetworking/Create_0.gml -------------------------------------------------------------------------------- /objects/oAsyncWrapperNetworking/Other_68.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/objects/oAsyncWrapperNetworking/Other_68.gml -------------------------------------------------------------------------------- /objects/oAsyncWrapperNetworking/oAsyncWrapperNetworking.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/objects/oAsyncWrapperNetworking/oAsyncWrapperNetworking.yy -------------------------------------------------------------------------------- /objects/obj_demo/Other_4.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/objects/obj_demo/Other_4.gml -------------------------------------------------------------------------------- /objects/obj_demo/obj_demo.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/objects/obj_demo/obj_demo.yy -------------------------------------------------------------------------------- /options/android/options_android.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/options/android/options_android.yy -------------------------------------------------------------------------------- /options/html5/options_html5.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/options/html5/options_html5.yy -------------------------------------------------------------------------------- /options/ios/options_ios.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/options/ios/options_ios.yy -------------------------------------------------------------------------------- /options/linux/options_linux.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/options/linux/options_linux.yy -------------------------------------------------------------------------------- /options/mac/options_mac.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/options/mac/options_mac.yy -------------------------------------------------------------------------------- /options/main/options_main.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/options/main/options_main.yy -------------------------------------------------------------------------------- /options/operagx/options_operagx.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/options/operagx/options_operagx.yy -------------------------------------------------------------------------------- /options/tvos/options_tvos.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/options/tvos/options_tvos.yy -------------------------------------------------------------------------------- /options/windows/options_windows.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/options/windows/options_windows.yy -------------------------------------------------------------------------------- /rooms/rm_demo/rm_demo.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/rooms/rm_demo/rm_demo.yy -------------------------------------------------------------------------------- /rooms/rm_test/rm_test.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/rooms/rm_test/rm_test.yy -------------------------------------------------------------------------------- /scripts/AsyncWrapper/AsyncWrapper.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/scripts/AsyncWrapper/AsyncWrapper.gml -------------------------------------------------------------------------------- /scripts/AsyncWrapper/AsyncWrapper.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/scripts/AsyncWrapper/AsyncWrapper.yy -------------------------------------------------------------------------------- /scripts/Exception/Exception.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/scripts/Exception/Exception.gml -------------------------------------------------------------------------------- /scripts/Exception/Exception.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/scripts/Exception/Exception.yy -------------------------------------------------------------------------------- /scripts/Logger/Logger.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/scripts/Logger/Logger.gml -------------------------------------------------------------------------------- /scripts/Logger/Logger.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/scripts/Logger/Logger.yy -------------------------------------------------------------------------------- /scripts/Sentry/Sentry.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/scripts/Sentry/Sentry.gml -------------------------------------------------------------------------------- /scripts/Sentry/Sentry.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meseta/gmlogging-suite/HEAD/scripts/Sentry/Sentry.yy --------------------------------------------------------------------------------