Usually, a mod is compiled like this way:
Code:
BuildMod [modname]
With [modname] representing the name of your mod.
Now, if you want to log all the output data to a file, just use this syntax instead:
Code:
BuildMod [modname] > [filename]
So it will look like this:
Code:
BuildMod MyMod > output.txt
This way, the mod MyMod is compiled as usual, but all of the data that normally appears in the console will now be written to output.txt. Note: because it's logged to a file now, the data won't appear in the console anymore.