package io.hansel.react;

import android.util.Log;

import com.facebook.react.bridge.ReactApplicationContext;



public class HanselLogsRn {

    private ReactApplicationContext reactContext;

    public HanselLogsRn(ReactApplicationContext reactContext) {
        this.reactContext = reactContext;
    }

    public void e(String tag, String message) {
        Log.e(tag, message);
    }
}
