diff --git a/android/src/main/java/io/invertase/firebase/Utils.java b/android/src/main/java/io/invertase/firebase/Utils.java index 444f6162..458ae2ec 100644 --- a/android/src/main/java/io/invertase/firebase/Utils.java +++ b/android/src/main/java/io/invertase/firebase/Utils.java @@ -160,7 +160,7 @@ public class Utils { public static int getResId(Context ctx, String resName) { int resourceId = ctx.getResources().getIdentifier(resName, "string", ctx.getPackageName()); if (resourceId == 0) { - Log.e(TAG, "resource " + resName + "could not be found"); + Log.e(TAG, "resource " + resName + " could not be found"); } return resourceId; }