Didn't think I'd be back again this quickly, guess my recall isn't what I'd hoped it would be.

How do a write the value of a boolean variable to a log as a string? I'd like to see the word 'True' or 'False' in my log.

This code is giving me a compile warning of:

different types for formal and actual parameter 2

because the second parameter I'm passing is a Boolean and it's expecting a string. So I guess I'm asking, how do I cast the boolean variable GbCEPSecurity as a String?

Code:
   ShLogWrite("_CINSRCH", GbCEPSecurity);