diff --git a/uc_stripe.module b/uc_stripe.module
index 61dea8c..c8e0cd4 100644
--- a/uc_stripe.module
+++ b/uc_stripe.module
@@ -675,14 +675,14 @@ function _uc_stripe_load_api() {
     include_once $path . '/lib/Stripe.php';
   }
   else {
-    watchdog('uc_stripe', 'Stripe Library not found. Please download into sites/all/libraries/stripe', 'warning');
+    watchdog('uc_stripe', 'Stripe Library not found. Please download into sites/all/libraries/stripe', array(), WATCHDOG_WARNING);
     return FALSE;
   }
 
   $apikey = variable_get('uc_stripe_testmode', FALSE) ? variable_get('uc_stripe_api_key_dev', '') : variable_get('uc_stripe_api_key_prod', '');
 
   if ($apikey == '') {
-    watchdog('uc_stripe', 'No Stripe API key is set. Payment cannot go through until set.', 'warning');
+    watchdog('uc_stripe', 'No Stripe API key is set. Payment cannot go through until set.', array(), WATCHDOG_WARNING);
     return FALSE;
   }
 
