Effectively, nothing.
The
LEFT(GETDATE(), 50)
version uses the default conversion format, which is exactly what CONVERT format 100 does.
In fact, you can omit the 100 completely:
SELECT CONVERT(VARCHAR, GETDATE())
Will also produce the same result.
The CONVERT version is clearer to read however.