Skip to content

Commit c816d0f

Browse files
snadrusLexLuthr
andauthoredJul 25, 2024··
Feat: Remove the /hapi/ UI and migrate all functionality into WebRPC + lit mjs (#113)
* partial * moved most everything * last few moved * get things running * ui-looks-good * setInterval should be setTimeout * lint * fix broken UI * remove sector filter, fix logging --------- Co-authored-by: LexLuthr <lexluthr@curiostorage.org>
1 parent bac98f3 commit c816d0f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1760
-1930
lines changed
 

‎cmd/curio/main.go

+8-10
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,14 @@ const (
3535
FlagMinerRepo = "miner-repo"
3636
)
3737

38+
func SetupLogLevels() {
39+
if _, set := os.LookupEnv("GOLOG_LOG_LEVEL"); !set {
40+
_ = logging.SetLogLevel("*", "INFO")
41+
_ = logging.SetLogLevel("harmonytask", "DEBUG")
42+
_ = logging.SetLogLevel("rpc", "ERROR")
43+
}
44+
}
45+
3846
func setupCloseHandler() {
3947
c := make(chan os.Signal, 1)
4048
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
@@ -46,18 +54,8 @@ func setupCloseHandler() {
4654
}()
4755
}
4856

49-
func SetupLogLevels() {
50-
if _, set := os.LookupEnv("GOLOG_LOG_LEVEL"); !set {
51-
_ = logging.SetLogLevel("*", "INFO")
52-
_ = logging.SetLogLevel("stores", "DEBUG")
53-
_ = logging.SetLogLevel("harmonytask", "DEBUG")
54-
}
55-
}
56-
5757
func main() {
58-
5958
SetupLogLevels()
60-
6159
local := []*cli.Command{
6260
cliCmd,
6361
runCmd,

‎docker/curio/entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ if [ ! -f $CURIO_REPO_PATH/.init.curio ]; then
5050
curio cli --machine $myip:12300 storage attach --init --seal --store $CURIO_REPO_PATH
5151
touch $CURIO_REPO_PATH/.init.curio
5252
echo Stopping Curio node ...
53-
echo Try to stop boost...
53+
echo Try to stop curio...
5454
kill -15 $CURIO_PID || kill -9 $CURIO_PID
5555
echo Done
5656
fi

0 commit comments

Comments
 (0)
Please sign in to comment.