Standard out and standard error

I need to run a cronjob and in the cronjob I execute a script that if there is an error produces standard error so I do

/RUNMYSCRIPT 2> mylogfile.log

However, if it runs correctly, I don't get a standard error output, I get a standard out output. How do I redirect both standard error and standard out to the same file?

since I could get either.

After directing standard error, direct standard output to the same place

/RUNMYSCRIPT 2> mylogfile.log >&2

It's equivalent to

/RUNMYSCRIPT 2> mylogfile.log > mylogfile.log

thanks