I have `N/log` required, and loaded, but I'm not s...
# suitescript
c
I have
N/log
required, and loaded, but I'm not seeing my
.audit
messages show up in the script deployment.
Copy code
define(["N/search", "N/ui/serverWidget", "N/log"], function(nss, nsui, nslog) {
    /**
     * Definition of the Suitelet script trigger point.
     * 
     * @requires N/search as 'nss'
     * @requires N/ui/serverWidget as 'nsui'
     * @requires N/log as "nslog"
     *
     * @param {Object} context
     * @param {ServerRequest} context.request - Encapsulation of the incoming request
     * @param {ServerResponse} context.response - Encapsulation of the Suitelet response
     * @Since 2015.2
     *
     */
    function onRequest(context) {
      nslog.audit({ title: "Request Recieved" });

      context.response.writePage({
          pageObject: renderList(find_Fulfillments())
      });
    }