Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
ddac03c
Fixes the dbsqlite gyp file for building on linux
mwieder Jul 23, 2019
3d392ac
Merge remote-tracking branch 'upstream/develop-9.0' into merge-develo…
livecodepanos Jul 23, 2019
8b1db59
Merge pull request #7129 from livecodepanos/merge-develop-9.0-23.07.2019
livecodepanos Jul 26, 2019
c9b7e96
Update log.lcdoc
Aug 1, 2019
a4c7f44
Create 22278.md
Aug 1, 2019
aa76aaa
Rename 22278.md to bugfix-22278.md
Aug 1, 2019
ef82f8f
Update log.lcdoc
Aug 1, 2019
9a8b652
Merge branch 'develop' into fix_building_dbsqlite_on_linux
mwieder Aug 8, 2019
5dd06e6
Merge branch 'develop-9.5' into fix_building_dbsqlite_on_linux
mwieder Aug 8, 2019
2559e26
Merge pull request #7136 from livecodesam/patch-106
livecodepanos Aug 13, 2019
e743a41
Merge branch 'develop' into fix_building_dbsqlite_on_linux
mwieder Aug 13, 2019
e9c3ca1
Merge remote-tracking branch 'upstream/develop-9.5' into merge-develo…
livecodepanos Sep 18, 2019
6952c35
Reverted ide and version
livecodepanos Sep 18, 2019
8f9b09e
[9.6 dp1] Updated version
livecodepanos Sep 18, 2019
4707098
Merge pull request #7168 from livecodepanos/9.6-dp-1_version_update
livecodepanos Sep 18, 2019
c505bff
Merge pull request #7167 from livecodepanos/merge-develop-9.5-18.09.2019
livecodepanos Sep 18, 2019
bab85ae
Merge remote-tracking branch 'upstream/develop-9.5' into merge-develo…
livecodepanos Sep 23, 2019
0f5324b
Merge pull request #7176 from livecodepanos/merge-develop-9.5-23.09.2019
livecodepanos Sep 23, 2019
0ec394f
Merge remote-tracking branch 'upstream/develop-9.5' into merge-develo…
livecodepanos Sep 23, 2019
4ebfb96
Merge pull request #7177 from livecodepanos/merge-develop-9.5-23.09.2019
livecodepanos Sep 23, 2019
2f98f1e
Merge remote-tracking branch 'upstream/develop-9.5' into merge-develo…
livecodepanos Sep 26, 2019
c0265cc
Merge pull request #7180 from livecodepanos/merge-develop-9.5-26.09.2019
livecodepanos Sep 26, 2019
8133251
Merge remote-tracking branch 'upstream/develop-9.5' into merge-develo…
livecodepanos Sep 27, 2019
71cd962
Merge pull request #7182 from livecodepanos/merge-develop-9.5-27.09.2019
livecodepanos Oct 1, 2019
9b8fdf5
Merge branch 'develop' into fix_building_dbsqlite_on_linux
mwieder Oct 1, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 11 additions & 10 deletions docs/dictionary/command/log.lcdoc
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,16 @@ A comma separated list of expressions containing the arguments to send.
Arrays are expressions and are valid to send as arguments.

Description:
The <log> command invokes the <logMessage> handler. When the <logMessage> is the
default value of `log` then the <log> command behaves in the same way as any
other scripted handler. If the <logMessage> is set to empty then the <log>
command does not invoke any handler or evaluate parameters, therefore, allowing
for many logs to be added to scripts for development and an easy low-cost method
to turn the logging off for a release build. The <logMessage> may be set to any
handler name, however, if the handler is not in the message path then use of the
<log> command will throw a `can't find handler` error.

References: log (command), put (command), msgChanged (message)
The <log> command invokes the handler specified by the <logMessage> property.
When the <logMessage> is the default value of `log` then the <log> command
behaves in the same way as any other scripted handler. If the <logMessage> is
set to empty then the <log> command does not invoke any handler or evaluate
parameters, therefore, allowing for many logs to be added to scripts for
development and an easy low-cost method to turn the logging off for a release
build. The <logMessage> may be set to any handler name, however, if the
handler is not in the message path then use of the <log> command will throw a
`can't find handler` error.

References: put (command), msgChanged (message), logMessage (property)

Tags: debugging
1 change: 1 addition & 0 deletions docs/notes/bugfix-22278.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Corrected missing text issue in the documentation for the log command
2 changes: 1 addition & 1 deletion ide
8 changes: 8 additions & 0 deletions revdb/revdb.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -539,6 +539,10 @@
# Error in ../../thirdparty/libsqlite/include/qry_dat.h
'-Werror=return-type',
],
'defines':
[
'_GLIBCXX_USE_CXX11_ABI=0',
],
},
],
[
Expand Down Expand Up @@ -652,6 +656,10 @@
'-lstdc++',
'-Wl,-Bdynamic',
],
'defines':
[
'_GLIBCXX_USE_CXX11_ABI=0',
],
},
],
],
Expand Down
10 changes: 5 additions & 5 deletions version
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BUILD_REVISION = 15504
BUILD_REVISION = 15510
BUILD_MAJOR_VERSION = 9
BUILD_MINOR_VERSION = 5
BUILD_POINT_VERSION = 1
BUILD_SHORT_VERSION = 9.5.1-rc-1
BUILD_LONG_VERSION = 9.5.1.15504 (RC 1)
BUILD_MINOR_VERSION = 6
BUILD_POINT_VERSION = 0
BUILD_SHORT_VERSION = 9.6.0-dp-1
BUILD_LONG_VERSION = 9.6.0.15510 (DP 1)