mirror of
https://gitlab.com/xynngh/YetAnotherCallBlocker.git
synced 2025-03-12 17:40:12 +01:00
Add a clarifying log message if offline DB is absent
This commit is contained in:
parent
533930b1a1
commit
8143913753
@ -6,6 +6,7 @@ import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
import java.io.BufferedReader;
|
||||
import java.io.FileNotFoundException;
|
||||
import java.io.InputStream;
|
||||
import java.io.InputStreamReader;
|
||||
|
||||
@ -82,6 +83,8 @@ public abstract class AbstractDatabase<T extends AbstractDatabaseDataSlice<V>, V
|
||||
loadInfoDataAfterLoadedHook();
|
||||
|
||||
return true;
|
||||
} catch (FileNotFoundException e) {
|
||||
LOG.error("loadInfoData() the info-file is not found! HAVE YOU COPIED THE ASSETS? (see `Building` in README)", e);
|
||||
} catch (Exception e) {
|
||||
LOG.error("loadInfoData() error during info file loading", e);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user