You are viewing a potentially older version of this package. View all versions.
odds-Ueberblick-1.0.0 icon

Ueberblick

Log caller file and line

Date uploaded 4 years ago
Version 1.0.0
Download link odds-Ueberblick-1.0.0.zip
Downloads 307
Dependency string odds-Ueberblick-1.0.0

README

Ueberblick

A simple mod that prefixes printt calls with [file:line]

For example these printt calls

[info] [CLIENT SCRIPT] -485
[info] [CLIENT SCRIPT] entity (-5: class C_DynamicProp [-5])
[info] [CLIENT SCRIPT] 2

will look like this:

[info] [CLIENT SCRIPT] [sh_menu_models.gnut:1419] -485
[info] [CLIENT SCRIPT] [sh_menu_models.gnut:1420] entity (-5: class C_DynamicProp [-5])
[info] [CLIENT SCRIPT] [sh_menu_models.gnut:1421] 2

This only changes how printt and the print reference in the root table behaves! Normal print statements will appear unchanged.

You can call the edited print reference with getroottable().print( "s" ). Note that the script has to be marked as untyped.

You should use printt( "s" ) since it's shorter and works in typed scripts as well.