diff --git a/represent.module b/represent.module
index 6eb2d1c..a2e5afa 100644
--- a/represent.module
+++ b/represent.module
@@ -209,16 +209,20 @@ function represent_send_request($path) {
     return $json;
   }
   catch (BadResponseException $e) {
-    watchdog('Represent API', 'Unexpected HTTP code "@code" on @path', array(
-      '@code' => $e->getResponse()->getStatusCode(),
-      '@path' => $path,
-    ), WATCHDOG_ERROR);
+    \Drupal::logger('represent')->notice('Unexpected HTTP code "@code" on @path',
+      [
+        '@code' => $e->getResponse()->getStatusCode(),
+        '@path' => $path,
+      ]
+    );
   }
   catch (RequestException $e) {
-    watchdog('Represent API', 'Unexpected error "@error" on @path', array(
-      '@error' => $e->getMessage(),
-      '@path' => $path,
-    ), WATCHDOG_ERROR);
+    \Drupal::logger('represent')->notice('Unexpected error "@error" on @path',
+      [
+        '@error' => $e->getMessage(),
+        '@path' => $path,
+      ]
+    );
   }
   return FALSE;
 }
